forked from bootml/neo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (23 loc) · 960 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
from setuptools import setup, find_packages
setup(
name='Neodroid',
version=0.1,
packages=find_packages(),
package_data={
'neodroid': ['environments/**', 'environments/*/*', 'environments/*/*/*',
'environments/*/*/*/*',
'environments/*/*/*/*/*', 'environments/*/*/*/*/*/*',
'environments/*/*/*/*/*/*/*'],
},
author='Christian Heider Nielsen',
author_email='chrini13@student.aau.dk',
description='Neodroid interface',
long_description='Python interface for the Neodroid platform, '
'an API for communicating with a Unity '
'Game process for a feedback response loop',
license='Apache License, Version 2.0',
keywords='python reinforcement-learning interface api',
url='https://github.com/sintefneodroid/neo',
install_requires=['kivy', 'pyzmq', 'numpy', 'flatbuffers',
'Pillow']
)