-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
113 lines (103 loc) · 4.07 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
"""A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
#from setuptools import setup, find_packages
#from setuptools import setup
# See https://medium.com/small-things-about-python/lets-talk-about-python-packaging-6d84b81f1bb5#.pjxrklmi6
setup(name='OGN_Flogger',
version='0.3.2a5',
scripts=['flogger_gui.py'], # Command to run
description='Realtime logging of glider flights from Flarm data',
long_description='Realtime logging and tracking of gliders from Flarm signals using APRS.',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Information Analysis',
],
project_urls = {
'tracker': 'http://github.com/tobiz/OGN-Flight-Logger_V3/issues',
},
keywords='OGN Open Glider Flarm Logging Tracking',
url='http://github.com/tobiz/OGN-Flight-Logger_V3',
author='tobiz',
author_email='[email protected]',
license='GPL',
python_requires = '>=2.7, <3',
packages = find_packages(),
py_modules=[
'flarm_db',
'flogger3',
'flogger_dump_flights',
'flogger_dump_IGC',
'flogger_dump_tracks',
'flogger_email_log',
'flogger_email_msg',
'flogger_find_tug',
'flogger_functions',
'flogger_get_coords',
'flogger_gui',
'flogger_landout',
'flogger_moviesplash',
'flogger_OGN_db',
# 'flogger_process_log',
# 'flogger_progress_indicator',
# 'flogger_resources_rc',
'flogger_settings',
'flogger_signals',
# 'flogger_splash',
'flogger_test_YorN',
'flogger_ui',
'flogger_aprs_parser',
'gpxTracks',
'open_db'
],
install_requires=[
'geocoder>=1.4.0',
'parse>=1.8.0',
'configobj>=4.7.2',
'geopy>=1.11.0',
'aerofiles>=0.3',
'aprslib>=0.6.46',
'gpxpy>=1.1.2',
'setuptools>=3.3',
'pytz>=2012c',
'requests>=2.13.0',
'mplleaflet>=0.0.5',
'LatLon>=1.0.2',
# 'PyQt4>=4.11.4',
'pyephem>=3.7.6.0',
'protobuf>=3.5.2.post1',
'adhocracy_pysqlite>=2.6.3',
'pysqlite3>=0.1.0',
'matplotlib',
],
data_files=[('', ['flogger_help_icon-1.png']),
('', ['flogger_icon-08.png']),
('', ['flogger_start.png']),
('', ['flogger_stop.png']),
('', ['flogger_settings_file.txt']),
('', ['requirements.txt']),
('', ['flogger_about.ui']),
('', ['flogger_config_1.ui']),
('', ['flogger_help.ui']),
('', ['flogger.ui']),
('', ['flogger_resources.qrc']),
('', ['flogger_schema-1.0.4.sql']),
('', ['ogn-logo-ani.gif']),
('', ['flarm_data']),
],
# packages=find_packages(),
include_package_data=True,
zip_safe=False)