-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
31 lines (29 loc) · 859 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
from setuptools import setup, find_packages
setup(
name='olympics_engine',
version='0.1.0',
description='A multi-agent benchmark',
url='https://github.com/jidiai/olympics_engine',
author='Yan Song',
author_email='yan.song@ia.ac.cn',
license='MIT',
packages=find_packages(),
package_data={'':['*.json']},
install_requires=['pygame>=2.0.2',
'numpy',
'gym'
],
extras_require={
"dev": [
"torch",
],
},
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)