-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
22 lines (21 loc) · 835 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
from setuptools import setup, find_packages
setup(name='heligym',
version='0.0.1',
description='A GYM environment package for reinforcement learning' \
'for helicopter flight tasks using minimum complexity helicopter model.',
url='https://github.com/ugurcanozalp/heli-gym',
author='Uğurcan Özalp, Mehmet Gökçay Kabataş',
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.6',
'Topic :: Aerospace :: Artificial Intelligence :: Reinforcement Learning',
],
install_requires=['numpy', 'gym', 'pyyaml','imageio'],
python_requires='>=3.6.5',
packages = ["heligym"],
include_package_data=True,
zip_safe=False
)