-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
46 lines (43 loc) · 1.7 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
from setuptools import setup
short_description = "AP-Net is an atomic-pairwise neural network framework for modeling interaction energies"
try:
with open("README.md", "r") as fp:
long_description = fp.read()
except FileNotFoundError:
long_description = short_description
setup(
name="apnet",
version="0.0.1",
description="Atomic-Pairwise Neural Network for Interaction Energies",
long_description=long_description,
long_description_content_type="text/markdown",
author="Zachary L. Glick",
author_email="zlg@gatech.edu",
url="https://github.com/zachglick/apnet",
packages=["apnet"], # TODO: is it better to use setuputils.find_packages() ?
classifiers=[ # TODO: is this complete? does that matter?
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
license="MIT",
platforms=["any"], # TODO: is this true?
package_data={"apnet": ["data/*.pkl",
"atom_models/*",
"pair_models/*",
]
},
install_requires=["numpy",
"scipy",
"pandas",
"qcelemental",
"tensorflow>=2.2,<2.4",
],
# TODO: docs dependencies are: ["sphinx", "sphinx_rtd_theme",]
python_requires=">=3.7", # TODO: is this too loose?
)