-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
29 lines (27 loc) · 899 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="transferable-dynamics-learning",
version="1.0.0",
author="Diego Agudelo",
author_email="[email protected]",
description="A benchmark for assessing transferability of "
"dynamics learning algorithms",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/rr-learning/transferable_dynamics_dataset",
packages=setuptools.find_packages(include=['DL', 'DL.*']),
entry_points={
'console_scripts': [
'compute_errors=DL.evaluation.evaluation:main',
'plot_errors=DL.plotting.plots:main',
],
},
install_requires=[
'numpy',
'matplotlib',
'scikit-learn',
],
python_requires='>=3.6',
)