-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
71 lines (62 loc) · 2.29 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
65
66
67
68
69
70
71
from setuptools import setup, find_packages
def get_long_description():
readme_path = 'README.md'
with open(readme_path, encoding='utf-8') as readme_file:
contents = readme_file.read()
return contents
def get_version():
ver_path = 'defdap/_version.py'
main_ns = {}
with open(ver_path) as ver_file:
exec(ver_file.read(), main_ns)
return main_ns['__version__']
setup(
name='DefDAP',
version=get_version(),
author='Michael D. Atkinson, Rhys Thomas, João Quinta da Fonseca',
author_email='[email protected]',
description='A python library for correlating EBSD and HRDIC data.',
long_description=get_long_description(),
long_description_content_type='text/markdown',
license="Apache 2.0 License",
keywords='defdap, EBSD, HRDIC, deformation, crystal, correlative analysis',
project_urls={
'GitHub': 'https://github.com/MechMicroMan/DefDAP',
'Documentation': 'https://defdap.readthedocs.io/en/latest'
},
classifiers=[
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Information Analysis',
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Framework :: IPython',
'Framework :: Jupyter',
'Framework :: Matplotlib'
],
packages=find_packages(exclude=['tests']),
package_data={'defdap': ['slip_systems/*.txt']},
python_requires='>=3.6',
install_requires=[
'scipy>=1.9',
'numpy',
'matplotlib>=3.0.0',
'scikit-image',
'pandas',
'peakutils',
'matplotlib_scalebar',
'networkx',
],
extras_require={
'testing': ['pytest', 'coverage', 'pytest-cov', 'pytest_cases'],
'docs': ['sphinx==5.0.2', 'sphinx_rtd_theme==0.5.0', 'sphinx_autodoc_typehints==1.11.1',
'nbsphinx==0.9.3', 'ipykernel', 'pandoc', 'ipympl']
}
)