-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 723 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 723 Bytes
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
from setuptools import setup, find_packages
setup(
name='gym_foo',
version='0.0.1',
author="Chenghao Li",
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,
)