-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (21 loc) · 980 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
from setuptools import setup, find_packages
with open("README.md", 'r') as f:
long_description = f.read()
package_description = 'A framework for learning to control'
package_description += ' via learning uncertainty-aware stochastic differential equations representation'
package_description += ' of the system dynamics, and using model-based reinforcement learning or MPC for control.'
setup(
name='sde4mbrl',
version='1.0.0',
description=package_description,
license="GNU 3.0",
long_description=long_description,
author='Franck Djeumou and Cyrus Neary',
author_email='[email protected] and [email protected]',
url="https://github.com/wuwushrek/sde4mbrl.git",
packages= find_packages(),
# TODO: Clean up the dependencies
install_requires=['numpy', 'scipy', 'matplotlib', 'tqdm', 'jax', 'dm-haiku', 'optax', 'mbrl', 'pandas', 'skrl', 'pynumdiff', 'pyulog', 'pyyaml'],
tests_require=['pytest', 'pytest-cov'],
python_requires=">=3.8"
)