Skip to content

Commit

Permalink
Fixes #26: Missing adsbxcot command.
Browse files Browse the repository at this point in the history
  • Loading branch information
ampledata committed Jan 22, 2024
1 parent 6e3b09f commit 0516e18
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
## ADSBXCOT 6.0.2

- Fixes #26: Missing 'adsbxcot' command.

## ADSBXCOT 6.0.1

- Fixes #25: Missing PyTAK version requirement, should be 6.2.0.
Expand Down
12 changes: 6 additions & 6 deletions adsbxcot/__init__.py
Expand Up @@ -23,6 +23,11 @@
:source: <https://github.com/snstac/adsbxcot>
"""

__version__ = "6.0.2"
__author__ = "Greg Albrecht <gba@snstac.com>"
__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
Expand All @@ -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 <gba@snstac.com>"
__copyright__ = "Copyright Sensors & Signals LLC https://www.snstac.com"
__license__ = "Apache License, Version 2.0"
)
9 changes: 7 additions & 2 deletions setup.cfg
Expand Up @@ -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 <oss@undef.net>
maintainer_email = oss@undef.net
license = Apache 2.0
license = Apache 2
license_files = LICENSE
classifiers =
License :: OSI Approved :: Apache Software License
Expand Down Expand Up @@ -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

0 comments on commit 0516e18

Please sign in to comment.