-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 702 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 702 Bytes
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
from setuptools import setup
setup(
name='msevo_gym',
version='0.1',
keywords='rl, environment, openaigym, openai-gym, gym, optimal control',
author="Johannes Dornheim",
author_email='johannes.dornheim@mailbox.org',
install_requires=[
'gym>=0.12',
'matplotlib',
'pyquaternion',
'imageio',
'pymks',
'scipy',
'numpy'
],
packages=["msevolution_env",
"msevolution_env.envs"],
include_package_data=True
)
"""
'pandas>=0.23',
'numpy>=1.15',
'scipy>=1.1',
'imageio >= 2',
'scikit-learn >= 0.20',
'matplotlib',
'pymks',
'pyquaternion'
"""