forked from TUDelft-CNS-ATM/bluesky
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup_simdata.py
49 lines (41 loc) · 1.96 KB
/
setup_simdata.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
from setuptools import setup, findall
from os import path
# Get the long description from the README file
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='bluesky-simdata',
use_calver=True,
setup_requires=['calver'],
author='The BlueSky community',
license='GNU General Public License v3 (GPLv3)',
maintainer='Jacco Hoekstra and Joost Ellerbroek',
description='The Open Air Traffic Simulator - simulation resources',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/TUDelft-CNS-ATM/bluesky',
classifiers=[
'Development Status :: 4 - Beta',
# Indicate who your project is intended for
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
# Pick your license as you wish
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
],
# This field adds keywords for your project which will appear on the
keywords='atm transport simulation aviation aircraft',
packages=['bluesky.resources.performance', 'bluesky.resources.navdata'], # Required
package_data={'bluesky.resources.performance': [f.replace('bluesky/resources/performance/', '', 1) for f in findall('bluesky/resources/performance')],
'bluesky.resources.navdata': [f.replace('bluesky/resources/navdata/', '', 1) for f in findall('bluesky/resources/navdata')]},
project_urls={
'Source': 'https://github.com/TUDelft-CNS-ATM/bluesky',
},
zip_safe=False
)