forked from lanl/hippynn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (42 loc) · 1.17 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
import setuptools
import versioneer
with open("README.rst", "r") as fh:
long_description = fh.read()
doc_requirements = [
"sphinx",
"sphinx_rtd_theme",
"ase",
]
full_requirements = [
"ase",
"numba",
"matplotlib",
"tqdm",
"graphviz",
"h5py",
]
setuptools.setup(
name="hippynn",
version=versioneer.get_version(),
author="Nicholas Lubbers et al",
author_email="hippynn@lanl.gov",
python_requires=">3.7",
install_requires=[
"numpy",
"torch",
],
extras_require={"docs": doc_requirements, "full": full_requirements},
license="BSD 3-Clause License",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Software Development :: Libraries",
],
description="The hippynn python package - a modular library for atomistic machine learning with pytorch",
long_description=long_description,
packages=setuptools.find_packages(),
cmdclass=versioneer.get_cmdclass(),
)