forked from koulanurag/ma-gym
-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
executable file
·40 lines (36 loc) · 1.23 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
import setuptools
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.5',
description='A collection of multi agent environments based on OpenAI gym.',
long_description_content_type='text/markdown',
long_description=open(path.join(path.abspath(path.dirname(__file__)), 'README.md'), encoding='utf-8').read(),
url='https://github.com/koulanurag/ma-gym',
author='Anurag Koul',
author_email='koulanurag@gmail.com',
license='MIT License',
packages=setuptools.find_packages(),
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',
],
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',
],
)