-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
78 lines (73 loc) · 2.07 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
long_description += "\n\n"
with open("README.md", "r", encoding="utf-8") as fh:
long_description += fh.read()
extras = {
"all": ["dm-reverb", "flappy-bird-gymnasium"],
"reverb": ["dm-reverb"],
"tf": ["tensorflow==2.14.0"],
}
setup(
name="rl-toolkit",
version="5.0.0",
author="Martin Kubovcik",
author_email="[email protected]",
description="RL-Toolkit: A Research Framework for Robotics", # noqa
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/markub3327/rl-toolkit",
project_urls={
"Bug Tracker": "https://github.com/markub3327/rl-toolkit/issues",
},
download_url="https://github.com/markub3327/rl-toolkit/releases",
packages=find_packages(),
keywords=[
"reinforcement-learning",
"ml",
"gymnasium",
"reverb",
"docker",
"rl-agents",
"rl",
"sac",
"rl-algorithms",
"soft-actor-critic",
"gsde",
"rl-toolkit",
"games",
"tensorflow",
"wandb",
],
install_requires=[
"gymnasium",
"box2d-py",
"pygame",
"swig",
"dm_control",
"tensorflow_probability==0.22.1",
"wandb",
"pyyaml",
"lxml",
],
extras_require=extras,
license="MIT License",
python_requires=">=3.9",
classifiers=[
"License :: OSI Approved :: MIT License",
"Environment :: Console",
"Environment :: GPU :: NVIDIA CUDA",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
entry_points={
"console_scripts": [
"rl_toolkit = rl_toolkit:main",
],
},
)