-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (35 loc) · 1.24 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
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")
setuptools.setup(
name="DIOS-SSM",
version="0.1",
author="Ryosuke Kojima",
author_email="[email protected]",
description="controllable deep neural state-space model library",
long_description="controllable deep neural state-space model library",
long_description_content_type="text/markdown",
url="https://github.com/clinfo/ConDeNS",
packages=setuptools.find_packages(),
entry_points={
"console_scripts": [
"dios= dios.dios:main",
"dios-linear= dios.dios_linear:main",
"dios-opt= dios.opt:main",
"dios-get-opt= dios.get_opt:main",
"dios-plot = dios.plot:main",
"dios-eval = dios.eval:main",
"dios-config = dios.config:main",
"dios-dataset = dios.data.generator:main",
"dios-field-plot = dios.dios_field_plot:main",
"dios-map = dios.mapping:main",
],
},
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)