forked from uoe-agents/robotic-warehouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (26 loc) · 856 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
from setuptools import setup, find_packages
setup(
name="robotic_warehouse",
version="0.0.1",
description="Robotic Warehouse Environment for RL",
author="Filippos Christianos",
url="https://github.com/semitable/robotic-warehouse",
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.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
install_requires=[
"numpy",
"gym>=0.15",
"pyglet",
"networkx",
],
extras_require={"test": ["pytest"]},
include_package_data=True,
)