forked from eleurent/rl-agents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 948 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
from setuptools import setup, find_packages
setup(
name='rl-agents',
version='1.0.dev0',
description='A collection of Reinforcement Learning agents',
url='https://github.com/eleurent/rl-agents',
author='Edouard Leurent',
author_email='eleurent@gmail.com',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Researchers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
],
keywords='reinforcement learning agents',
packages=find_packages(exclude=['docs', 'scripts', 'tests*']),
install_requires=['gymnasium', 'numpy', 'pandas', 'numba', 'pygame', 'matplotlib', 'seaborn', 'six', 'docopt',
'torch>=1.2.0', 'tensorboardX', 'scipy'],
tests_require=['pytest'],
extras_require={
'dev': ['scipy'],
},
entry_points={
'console_scripts': [],
},
)