-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
49 lines (33 loc) · 901 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
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, find_packages
setup(
name='maho',
version='0.0.1',
description='Spot aircraft with ADS-B and a PTZ IP camera',
url='https://github.com/cnelson/maho',
author='Chris Nelson',
author_email='[email protected]',
license='Public Domain',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: Public Domain',
'Programming Language :: Python :: 3',
],
keywords='dump1090 rtlsdr adsb ads-b onvif webcam camera aircraft',
packages=find_packages(),
install_requires=[
'onvif-zeep',
'pyModeS',
'expiringdict',
'opencv-python'
],
# tests_require=[
# 'mock'
# ],
test_suite='maho.tests',
entry_points={
'console_scripts': [
'maho = maho.cli:main'
]
}
)