-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (42 loc) · 1.31 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
37
38
39
40
41
42
43
44
45
from setuptools import setup, find_packages
long_description = """
Collection of simple OpenAI gym environments to train and test your reinforcement learning algorithms
"""
setup(
name='small-rl-envs',
version='0.2.0',
description="Small reinforcement learning environments",
long_description=long_description,
url='https://github.com/MillionIntegrals/small-rl-envs',
author='Jerry Tworek',
author_email='[email protected]',
license='MIT',
packages=find_packages(exclude=["*.test", "*.test.*", "test.*", "test"]),
python_requires='>=3.6',
install_requires=[
'numpy',
'gym',
'numba'
],
tests_require=[
'pytest'
],
extras_require={
'dev': ['pytest', 'flake8']
},
entry_points={
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
],
scripts=[]
)