forked from mlcclab/PyRAI2MD-hiam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (50 loc) · 1.52 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
######################################################
#
# PyRAI2MD 2 setup file
#
# Author Jingbai Li
# Aug 30 2022
#
######################################################
from setuptools import setup
from setuptools import find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="PyRAI2MD",
version="2.4",
author="Jingbai Li",
author_email="[email protected]",
description="Python Rapid Artificial Intelligence Ab Initio Molecular Dynamics",
long_description=long_description,
long_description_content_type="text/markdown",
url="",
install_requires=[
'numpy>=1.20.0',
'matplotlib>=3.5.0',
'tensorflow>=2.3.0',
'cython>=0.29.0',
'scikit-learn'
],
extras_require={
"pyNNsMD": ["pyNNsMD>=2.0.0"],
# "GCNNP": ["GCNNP>=0.1.0"],
},
packages=find_packages(),
include_package_data=True,
package_data={"PyRAI2MD": ["*.pyx"]},
entry_points={
'console_scripts': [
'pyrai2md=PyRAI2MD.pyrai2md:main',
],
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Software Development :: Libraries :: Python Modules"
],
keywords=["materials", "science", "machine", "learning", "deep", "dynamics", "molecular", "potential"],
)