-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
25 lines (23 loc) · 1.03 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
from setuptools import setup, find_packages
from .radar import __version__
with open('README') as f:
long_description = f.read()
setup(
name='spots',
version=__version__,
packages=find_packages(),
data_files=[('', ['adsb-packet.png', 'spots.png', 'LICENSE.txt', 'README.md', 'README']),
('client', ['map.html', 'spots.html', 'spots.js']),
('radar', ['modes1.bin', 'radar.conf', 'spots_config.json', 'spots_emitter.conf', 'squitter.json'])],
install_requires=['docutils>=0.3', 'Flask', 'pyrtlsdr', 'simplejson'],
url='https://github.com/Wolfrax/spots',
license='GPL',
author='Mats Melander',
author_email='[email protected]',
classifiers=['Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',],
description='A decoder for ADS-B messages on extended squitter at 1090MHz',
long_description=long_description,
keywords='ads-b adsb dump1090 mode-s modes'
)