forked from koulanurag/ma-gym
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·40 lines (36 loc) · 1.24 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
from os import path
from setuptools import setup
extras = {
'test': ['pytest', 'pytest_cases'],
'develop': ['imageio'],
}
# Meta dependency groups.
extras['all'] = [item for group in extras.values() for item in group]
setup(name='ma_gym',
version='0.0.1',
description='A collection of multi agent environments based on OpenAI gym.',
long_description=open(path.join(path.abspath(path.dirname(__file__)), 'README.md')).read(),
url='https://github.com/koulanurag/ma-gym',
author='Anurag Koul',
author_email='koulanurag@gmail.com',
license=open(path.join(path.abspath(path.dirname(__file__)), 'LICENSE')).read(),
packages=['ma_gym'],
py_modules=['ma_gym'],
install_requires=[
'scipy>=1.3.0',
'numpy>=1.16.4',
'pyglet>=1.4.0,<=1.5.0',
'cloudpickle>=1.2.0,<1.7.0',
'gym>=0.17.0',
'Pillow>=6.2.0',
],
extras_require=extras,
tests_require=extras['test'],
python_requires='>=3.5',
classifiers=[
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)