forked from hackingmaterials/amset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
93 lines (90 loc) · 2.92 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
85
86
87
88
89
90
91
92
93
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.3.1",
"mkdocs-material==8.4.4",
"mkdocs-minify-plugin==0.5.0",
"mkdocs-macros-plugin==0.7.0",
"markdown-include==0.7.0",
"markdown-katex==202112.1034",
],
"tests": ["pytest==7.1.3", "pytest-cov==3.0.0"],
"all-electron": ["pawpyseed==0.7.1"],
"dev": [
"coverage==6.4.4",
"codacy-coverage==1.3.11",
"pycodestyle==2.9.1",
"mypy==0.971",
"pydocstyle==6.1.1",
"flake8==5.0.4",
"pylint==2.15.2",
"black==22.8.0",
"pre-commit==2.20.0",
],
},
python_requires=">=3.8",
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"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",
]
},
)