-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 817 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
# Created by Giuseppe Paolo
# Date: 28/07/2020
from setuptools import setup
setup(author='Giuseppe Paolo',
name='quality_diversity',
py_modules=[],
version='0.1.0',
install_requires=[
'setuptools',
'numpy',
'pytest',
'gym',
'pathos',
'simplejson',
'matplotlib',
'ipython',
'scikit-image',
'sklearn',
'jupyter',
'progress',
'cython',
'cmaes==0.6.0',
'netpbmfile',
'pybind11',
'pygame',
'stable-baselines3',
'iisignature',
'JSON-log-formatter',
'pygame',
'ffmpeg-python',
'torch',
'tensorboard'
]
)