-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.py
39 lines (36 loc) · 928 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
37
38
39
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from setuptools import setup
setup(
name='gobigger',
version='0.2.0',
description='Go-Bigger: Multi-Agent Decision Intelligence Environment',
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',
'gobigger.envs',
'gobigger.bin',
'gobigger.configs',
'gobigger.playbacks',
],
install_requires=[
'easydict',
'gym>=0.15.3', # pypy incompatible
'pygame>=2.0.0',
'pytest>=5.0.0',
'opencv-python',
'numpy>=1.10',
'numexpr',
'lz4',
]
)