forked from usnistgov/jarvis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
82 lines (78 loc) · 2.44 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
import glob
import os
from setuptools import setup, find_packages
JARVIS_DIR = os.path.dirname(os.path.abspath(__file__))
base_dir = os.path.dirname(__file__)
with open(os.path.join(base_dir, "README.rst")) as f:
long_d = f.read()
setup(
name="jarvis-tools",
version="2021.10.03",
long_description=long_d,
install_requires=[
"numpy>=1.19.5",
"scipy>=1.4.1",
"matplotlib>=3.0.0",
"spglib>=1.14.1",
"joblib>=0.14.1",
"requests>=2.23.0",
"toolz>=0.9.0",
"xmltodict>=0.11.0",
"tqdm>=4.41.1",
],
package_data={
"jarvis.core": [
"Elements.json",
"magpie.json",
"element_charge.json",
"atom_init.json",
],
"jarvis.tasks.lammps.templates": [
"displace.mod",
"inelastcomb.mod",
"inelast_min.mod",
"inelast.mod",
"inelast_nobox.mod",
"inelastreax.mod",
"relax.mod",
"run0.mod",
],
"jarvis.io.vasp": ["default_potcars.json"],
"jarvis.analysis.solarefficiency": ["am1.5G.dat"],
"jarvis.analysis.thermodynamics": ["unary.json", "unary_qe_tb.json"],
"jarvis.io.wannier": ["default_semicore.json"],
"jarvis.analysis.diffraction": ["atomic_scattering_params.json"],
"jarvis": ["LICENSE.rst"],
},
extras_require={
"ai": [
"torch",
"dgl",
"keras",
"tensorflow",
"scikit-learn",
"flask",
"pandas",
],
"babel": ["openbabel", "pybel"],
"doc": ["sphinx>=1.3.1", "sphinx-rtd-theme>=0.1.8"],
},
author="Kamal Choudhary",
author_email="[email protected]",
description=(
"jarvis-tools: an open-source software package for data-driven atomistic materials design. https://jarvis.nist.gov/"
),
license="NIST",
url="https://github.com/usnistgov/jarvis",
packages=find_packages(),
# long_description=open(os.path.join(os.path.dirname(__file__), "README.rst")).read(),
classifiers=[
"Programming Language :: Python :: 3.6",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
],
# scripts=glob.glob(os.path.join(JARVIS_DIR, "*"))
)