-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (31 loc) · 741 Bytes
/
Copy pathsetup.py
File metadata and controls
36 lines (31 loc) · 741 Bytes
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
from setuptools import setup, find_packages
__version__ = "0.3.2"
packages = find_packages(
exclude=[
"tests",
"examples",
]
)
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="interpreter",
version=__version__,
license="MIT",
packages=packages,
include_package_data=True,
python_requires=">=3.9",
long_description=long_description,
long_description_content_type="text/markdown",
author="Hector Kohler",
author_email="hector.kohler@inria.fr",
install_requires=[
"scikit-learn>=1.3.0",
"stable-baselines3",
"rlberry",
"gymnasium[mujoco]",
"huggingface-sb3",
"tqdm",
"gym",
],
)