-
Notifications
You must be signed in to change notification settings - Fork 101
/
setup.py
executable file
·44 lines (40 loc) · 1.4 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
from os import path
import setuptools
from setuptools import setup
extras = {
'test': ['pytest<8.0.0', '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.14',
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.27',
'cloudpickle==2.0.0',
'gym>=0.19.0,<=0.20.0',
'pillow>=7.2.0',
'six>=1.16.0'
],
extras_require=extras,
tests_require=extras['test'],
python_requires='>=3.6, <3.12',
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
)