From 0516e185d2a366098e9ea435f81159db18a23cde Mon Sep 17 00:00:00 2001 From: Greg Albrecht Date: Mon, 22 Jan 2024 10:35:51 -0800 Subject: [PATCH] Fixes #26: Missing adsbxcot command. --- CHANGELOG.md | 4 ++++ adsbxcot/__init__.py | 12 ++++++------ setup.cfg | 9 +++++++-- 3 files changed, 17 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 11f329a..4df60b4 100644 --- a/CHANGELOG.md +++ b/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. diff --git a/adsbxcot/__init__.py b/adsbxcot/__init__.py index bfdb66b..be0e065 100644 --- a/adsbxcot/__init__.py +++ b/adsbxcot/__init__.py @@ -23,6 +23,11 @@ :source: """ +__version__ = "6.0.2" +__author__ = "Greg Albrecht " +__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 " -__copyright__ = "Copyright Sensors & Signals LLC https://www.snstac.com" -__license__ = "Apache License, Version 2.0" + ) \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index 11a2f36..f7e3113 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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 maintainer_email = oss@undef.net -license = Apache 2.0 +license = Apache 2 license_files = LICENSE classifiers = License :: OSI Approved :: Apache Software License @@ -69,6 +71,10 @@ install_requires = aircot >= 1.2.0 aiohttp +[options.entry_points] +console_scripts = + adsbxcot = adsbxcot.commands:main + [options.extras_require] test = pytest-asyncio @@ -76,4 +82,3 @@ test = pylint flake8 black - cryptography