-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (28 loc) · 861 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="rl2021",
version="0.1",
description="Reinforcement Learning in UoE (HW)",
# author="Filippos Christianos",
url="https://github.com/LukasSchaefer/uoe-rl2021-solutions",
packages=find_packages(exclude=["contrib", "docs", "tests"]),
classifiers=[
"Development Status :: 4 - Beta",
# Indicate who your project is intended for
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
install_requires=[
"numpy>=1.18",
"torch>=1.3",
"gym>=0.12",
"gym[box2d]",
"tqdm>=4.41",
"pyglet==1.5.0",
"matplotlib>=3.1",
"pytest>=5.3",
],
extras_require={"test": ["pytest"]},
include_package_data=True,
)