-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
36 lines (32 loc) · 1.35 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
VERSION = "1.0.1"
setup(name='fast_rl',
version=VERSION,
description='Fastai for computer vision and tabular learning has been amazing. One would wish that this would '
'be the same for RL. The purpose of this repo is to have a framework that is as easy as possible to '
'start, but also designed for testing new agents. ',
url='https://github.com/josiahls/fast-reinforcement-learning',
author='Josiah Laivins',
author_email='jlaivins@uncc.edu',
python_requires='>=3.6',
long_description=long_description,
long_description_content_type="text/markdown",
license='',
packages=find_packages(),
zip_safe=False,
install_requires=['fastai>=1.0.59', 'gym[box2d, atari]', 'jupyter'],
extras_require={'all': [
'gym-minigrid',
'moviepy'
# 'gym_maze @ git+https://github.com/MattChanTK/gym-maze.git',
# 'pybullet-gym @ git+https://github.com/benelot/pybullet-gym.git'
]},
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)