forked from deepmodeling/rid-kit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (25 loc) · 890 Bytes
/
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
# -*- coding: utf-8 -*-
from os import path
import setuptools
import datetime
today = datetime.date.today().strftime("%b-%d-%Y")
install_requires = ["numpy", "sklearn", "dpdispatcher", "tensorflow", "google"]
setuptools.setup(
name='rid',
author="RiD Team",
author_email="",
description="Python RiD for enhanced sampling",
long_description="",
long_description_content_type="text/markdown",
url="",
python_requires=">=3.6",
packages=['rid', 'rid/lib', 'rid/lib/gen', 'rid/lib/nn', 'rid/template'],
classifiers=[
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
],
package_data={'rid/template': ['*.json', '*.sh', '*.mdp']},
include_package_data=True,
keywords='enhanced sampling reinforced dynamics RiD',
install_requires=install_requires,
)