-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
61 lines (55 loc) · 1.68 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
# -*- coding: utf-8 -*-
from os import path
import setuptools
import datetime
from pathlib import Path
today = datetime.date.today().strftime("%b-%d-%Y")
# define constants
INSTALL_REQUIRES = (Path(__file__).parent / "requirements.txt").read_text().splitlines()
readme_file = Path(__file__).parent / "README.md"
readme = readme_file.read_text(encoding="utf-8")
setuptools.setup(
name='rid-kit',
author="Yanze Wang, Jiahao Fan",
author_email="[email protected],[email protected]",
use_scm_version={'write_to': 'rid/_version.py'},
version='{{VERSION_PLACEHOLDER}}',
description="RiD package for enhanced sampling",
setup_requires=['setuptools_scm'],
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/deepmodeling/rid-kit",
python_requires=">=3.6",
packages=[
"rid",
"rid/common",
"rid/common/gromacs",
"rid/common/lammps",
"rid/common/sampler",
"rid/common/plumed",
"rid/entrypoint",
"rid/flow",
"rid/nn",
"rid/op",
"rid/select",
"rid/mcmc",
"rid/superop",
"rid/task",
"rid/utils",
"rid/tools",
"rid/common/tensorflow",
],
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,
entry_points={
"console_scripts": [
"rid = rid.entrypoint.main:main"
]
},
)