forked from opendilab/GoBigger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 853 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
33
34
35
36
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from setuptools import setup
setup(
name='gobigger',
version='0.1',
description='Go-Bigger: Multi-Agent Decision Intelligence Challenge',
author='OpenDILab',
license='Apache License, Version 2.0',
keywords='Go-Bigger DI',
packages=[
'gobigger',
'gobigger.agents',
'gobigger.balls',
'gobigger.server',
'gobigger.utils',
'gobigger.managers',
'gobigger.players',
'gobigger.render',
],
install_requires=[
'easydict',
'gym>=0.15.3', # pypy incompatible
'pygame>=2.0.0',
'pytest>=5.0.0',
# 'sphinx_toolbox',
'opencv-python',
'numpy>=1.10',
'matplotlib',
'trueskill'
]
)