-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
32 lines (29 loc) · 869 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
30
31
32
from setuptools import setup, find_packages
install_requires = [
'numpy',
'gym==0.22.0',
'networkx==2.5',
'bitstring==3.1.7',
'flake8==3.8.4'
]
testing_requires = [
'pytest>=5.2',
]
setup(name='parrotprediction-openai-envs',
version='2.3.2',
description='Custom environments for OpenAI Gym',
keywords='acs lcs machine-learning reinforcement-learning openai',
url='https://github.com/ParrotPrediction/openai-envs',
author='Parrot Prediction Ltd.',
author_email='nkozlowski@protonmail.com',
license='MIT',
packages=find_packages(),
setup_requires=[
'pytest-runner',
],
install_requires=install_requires,
extras_require={
'testing': testing_requires
},
include_package_data=False, # We don't have other types of files
zip_safe=False)