-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes #26: Missing adsbxcot command.
- Loading branch information
Showing
3 changed files
with
17 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,11 @@ | |
:source: <https://github.com/snstac/adsbxcot> | ||
""" | ||
|
||
__version__ = "6.0.2" | ||
__author__ = "Greg Albrecht <[email protected]>" | ||
__copyright__ = "Copyright Sensors & Signals LLC https://www.snstac.com" | ||
__license__ = "Apache License, Version 2.0" | ||
|
||
# Python 3.6 test/build work-around: | ||
try: | ||
from .constants import DEFAULT_POLL_INTERVAL, DEFAULT_LIGHT_COT # NOQA | ||
|
@@ -33,9 +38,4 @@ | |
|
||
warnings.warn( | ||
"Unable to import required modules, ignoring (Python 3.6 build work-around)." | ||
) | ||
|
||
__version__ = "6.0.1" | ||
__author__ = "Greg Albrecht <[email protected]>" | ||
__copyright__ = "Copyright Sensors & Signals LLC https://www.snstac.com" | ||
__license__ = "Apache License, Version 2.0" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,12 +22,14 @@ project_urls = | |
CI: GitHub Actions = https://github.com/snstac/adsbxcot/actions | ||
GitHub: issues = https://github.com/snstac/adsbxcot/issues | ||
GitHub: repo = https://github.com/snstac/adsbxcot | ||
Docs: Changelog = https://adsbxcot.readthedocs.io/en/latest/changelog/ | ||
Docs: RTD = https://adsbxcot.rtfd.io | ||
description = Display Aircraft in TAK. A gateway for displaying aircraft tracks from ADS-B Aggregators (ADSBExchange, adsb.fi, et al.) in TAK Products (ATAK, WinTAK, iTAK, TAK Server, TAKX). | ||
long_description = file: README.rst | ||
long_description_content_type = text/x-rst | ||
maintainer = Greg Albrecht <[email protected]> | ||
maintainer_email = [email protected] | ||
license = Apache 2.0 | ||
license = Apache 2 | ||
license_files = LICENSE | ||
classifiers = | ||
License :: OSI Approved :: Apache Software License | ||
|
@@ -69,11 +71,14 @@ install_requires = | |
aircot >= 1.2.0 | ||
aiohttp | ||
|
||
[options.entry_points] | ||
console_scripts = | ||
adsbxcot = adsbxcot.commands:main | ||
|
||
[options.extras_require] | ||
test = | ||
pytest-asyncio | ||
pytest-cov | ||
pylint | ||
flake8 | ||
black | ||
cryptography |