-
Notifications
You must be signed in to change notification settings - Fork 88
/
setup.py
26 lines (24 loc) · 870 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='gym_jsbsim',
version='0.1',
description='A package of reinforcement learning environments for flight '
'control using the JSBSim flight dynamics model.',
url='https://github.com/Gor-Ren/gym-jsbsim',
author='Gor-Ren',
license='MIT',
install_requires=[
'numpy',
'gym',
'matplotlib',
],
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)