forked from RyanNavillus/Syllabus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (36 loc) · 1.26 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
from setuptools import find_packages, setup
extras = dict()
extras['test'] = ['cmake', 'ninja', 'nle>=0.9.0', 'matplotlib>=3.7.1', 'scipy==1.10.0', 'tensorboard>=2.13.0', 'shimmy']
extras['docs'] = ['sphinx-tabs', 'sphinxcontrib-spelling', 'furo']
extras['all'] = extras['test'] + extras['docs']
setup(
name="syllabus-rl",
description="Syllabus Library"
"Curriculum learning tools for RL",
long_description_content_type="text/markdown",
version="0.5",
packages=find_packages(),
include_package_data=True,
install_requires=[
'pytest>=8.1.1',
'pytest-benchmark>=3.4.1',
'gymnasium>=0.28.0',
'numpy>=1.24.0',
'ray[rllib]>=2.8.1',
'torch>=2.0.1',
],
extras_require=extras,
python_requires=">=3.8, <=3.11",
author="Ryan Sullivan",
author_email="[email protected]",
url="https://github.com/RyanNavillus/Syllabus",
keywords=["Syllabus", "AI", "RL", "Curriculum learning"],
classifiers=[
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)