-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 990 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
30
31
32
33
import setuptools
import shutil
import os
path = os.path.dirname(os.path.abspath(__file__))
shutil.copyfile(f"{path}/dmm.py", f"{path}/dmm/dmm.py")
#shutil.copyfile(f"{path}/dmm.py", f"{path}/dmm/gcn.py")
setuptools.setup(
name="DMM",
version="1.0",
author="Ryosuke Kojima",
author_email="[email protected]",
description="deep markov model library",
long_description="deep markov model library",
long_description_content_type="text/markdown",
url="https://github.com/clinfo/DeepKF",
packages=setuptools.find_packages(),
entry_points={
'console_scripts': [
'dmm = dmm.dmm:main',
'dmm-plot = dmm.dmm_plot:main',
'dmm-field-plot = dmm.dmm_field_plot:main',
'dmm-map = dmm.mapping:main',
],
},
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)