-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (43 loc) · 1.45 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="deepcv",
version="1.0",
author="Rangsiman Ketkaew",
author_email="[email protected]",
description="Unsupervised machine learning package for discovering collective variables",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://gitlab.uzh.ch/lubergroup/deepcv",
download_url="https://gitlab.uzh.ch/lubergroup/deepcv/-/releases",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
keywords=[
"deep learning",
"chemistry",
"computational chemistry",
"theoretical chemistry",
"enhanced sampling",
"metadynamics",
"collective variables",
],
include_package_data=True,
zip_safe=False,
entry_points={
"console_scripts": [
"deepcv=src.main:main",
"deepcv_calc_rep=src.tools.calc_rep:main",
"deepcv_gen_input=src.tools.gen_input:main",
"deepcv_daenn=src.modules.daenn:main",
"deepcv_gan_train=src.modules.gan_train:main",
"deepcv_gan_predict=src.modules.gan_predict:main",
"deepcv2plumed=src.tools.deepcv2plumed:main",
]
},
)