-
Notifications
You must be signed in to change notification settings - Fork 47
/
setup.py
84 lines (81 loc) · 2.66 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
72
73
74
75
76
77
78
79
80
81
82
83
84
from setuptools import find_packages, setup
from amset import __version__
with open("README.md", "r") as file:
long_description = file.read()
if __name__ == "__main__":
setup(
name="amset",
version=__version__,
description="AMSET is a tool to calculate carrier transport properties "
"from ab initio calculation data",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/hackingmaterials/amset",
author="Alex Ganose",
author_email="[email protected]",
license="modified BSD",
keywords="mobility conductivity seebeck scattering lifetime rates dft vasp",
packages=find_packages(),
package_data={
"amset": [
"defaults.yaml",
"interpolation/quad.json",
"plot/amset_base.mplstyle",
"plot/revtex.mplstyle",
]
},
data_files=["LICENSE"],
zip_safe=False,
install_requires=[
"pymatgen>=2022.0.16",
"scipy",
"monty",
"matplotlib",
"BoltzTraP2",
"tqdm",
"tabulate",
"memory_profiler",
"spglib",
"click",
"sumo",
"h5py",
"pyFFTW",
"interpolation",
"numba",
],
setup_requires=[
"numpy",
],
extras_require={
"docs": [
"mkdocs==1.6.1",
"mkdocs-material==9.5.49",
"mkdocs-minify-plugin==0.8.0",
"mkdocs-macros-plugin==1.3.7",
"markdown-include==0.8.1",
"markdown-katex==202406.1035",
],
"tests": ["pytest==8.3.2", "pytest-cov==6.0.0"],
"all-electron": ["pawpyseed==0.7.1"],
"dev": ["pre-commit==4.0.1"],
},
python_requires=">=3.9",
classifiers=[
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Topic :: Other/Nonlisted Topic",
"Topic :: Scientific/Engineering",
],
tests_require=["pytest"],
entry_points={
"console_scripts": [
"amset = amset.tools.cli:cli",
]
},
)