-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
64 lines (56 loc) · 2.3 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
"""
Created on Sat Jan 19 09:08:25 2019
@author: gduscher
"""
# -*- coding: utf-8 -*-
from codecs import open
import os
import setuptools
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst')) as f:
long_description = f.read()
with open(os.path.join(here, 'pyTEMlib/version.py')) as f:
__version__ = f.read().split("'")[1]
setuptools.setup(
name="pyTEMlib",
version=__version__,
description="pyTEM: TEM Data Quantification library through a model-based approach",
long_description=long_description,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Cython',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Scientific/Engineering :: Information Analysis'],
keywords=['imaging', 'spectra', 'transmission', 'electron', 'microscopy',
'scientific', 'scanning', 'eels', 'visualization', 'processing',
'storage', 'hdf5', 'diffraction'],
packages=setuptools.find_packages(exclude=["*.tests", "*.tests.*",
"tests.*", "tests"]),
url="https://pycroscopy.github.io/pyTEMlib/about.html",
license='MIT',
author="Gerd Duscher",
author_email="gduscher@utk.edu",
install_requires=['scipy', 'numpy', 'pillow', 'ase', 'tqdm', 'plotly', 'pandas', 'requests', 'lxml', 'ipympl',
'spglib', 'scikit-image', 'scikit-learn', 'pyNSID>=0.0.7', 'sidpy>=0.12.1', 'SciFiReaders>=0.0.8'], # 'PyQt5> 1.0'],#
setup_requires=['pytest-runner'],
tests_require=['pytest'],
platforms=['Linux', 'Mac OSX', 'Windows 11/10'],
package_data={"pyTEMlib": ["data/*"]},
test_suite='pytest',
include_package_data=True,
entry_points={
'console_scripts': [
'pyTEMlib=pyTEMlib:main',
],
},
)