forked from Gor-Ren/gym-jsbsim
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
33 lines (31 loc) · 1.24 KB
/
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
from setuptools import setup, find_packages
#This setup.py is still work under construction. Currently, I don't have another machine available to test this.
#Any help in creating a working setup.py is highöy appreciated.
setup(name='Markov-Pilot',
version='0.1',
description='A package of reinforcement learning environments for flight '
'control using the JSBSim flight dynamics model.'
'This package supports Multi-Agents to learn how to fly.'
'It supports the MADDPG algorithm.',
url='https://github.com/opt12/Markov-Pilot',
author='opt12',
license='MIT',
install_requires=[
'numpy',
'gym',
'matplotlib', #TODO: a lot is missing
'pandas',
'bokeh',
'pytorch',
],
packages=find_packages(),
classifiers=[
'License :: OSI Approved :: MIT License',
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
python_requires='>=3.6',
include_package_data=True,
zip_safe=False)