kopia lustrzana https://github.com/glidernet/python-ogn-client
commit
88a73c00d6
|
@ -1,6 +1,6 @@
|
||||||
# CHANGELOG
|
# CHANGELOG
|
||||||
|
|
||||||
## Unreleased
|
## 0.8.1: - 2018-01-12
|
||||||
- client: Ignore messages other than UTF-8
|
- client: Ignore messages other than UTF-8
|
||||||
- parser: Allow IDs only with hexadecimal values
|
- parser: Allow IDs only with hexadecimal values
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ APRS_SERVER_PORT_CLIENT_DEFINED_FILTERS = 14580
|
||||||
|
|
||||||
APRS_APP_NAME = 'python-ogn-client'
|
APRS_APP_NAME = 'python-ogn-client'
|
||||||
|
|
||||||
PACKAGE_VERSION = '0.8.0'
|
PACKAGE_VERSION = '0.8.1'
|
||||||
APRS_APP_VER = PACKAGE_VERSION[:3]
|
APRS_APP_VER = PACKAGE_VERSION[:3]
|
||||||
|
|
||||||
APRS_KEEPALIVE_TIME = 240
|
APRS_KEEPALIVE_TIME = 240
|
||||||
|
|
3
setup.py
3
setup.py
|
@ -27,13 +27,14 @@ setup(
|
||||||
'Intended Audience :: Science/Research',
|
'Intended Audience :: Science/Research',
|
||||||
'Topic :: Scientific/Engineering :: GIS',
|
'Topic :: Scientific/Engineering :: GIS',
|
||||||
'License :: OSI Approved :: GNU Affero General Public License v3',
|
'License :: OSI Approved :: GNU Affero General Public License v3',
|
||||||
'Programming Language :: Python :: 3',
|
'Programming Language :: Python :: 3 :: Only',
|
||||||
'Programming Language :: Python :: 3.4',
|
'Programming Language :: Python :: 3.4',
|
||||||
'Programming Language :: Python :: 3.5',
|
'Programming Language :: Python :: 3.5',
|
||||||
'Programming Language :: Python :: 3.6',
|
'Programming Language :: Python :: 3.6',
|
||||||
],
|
],
|
||||||
keywords='gliding ogn',
|
keywords='gliding ogn',
|
||||||
packages=['ogn.{}'.format(package) for package in find_packages(where='ogn')],
|
packages=['ogn.{}'.format(package) for package in find_packages(where='ogn')],
|
||||||
|
python_requires='>=3',
|
||||||
install_requires=[],
|
install_requires=[],
|
||||||
extras_require={
|
extras_require={
|
||||||
'dev': [
|
'dev': [
|
||||||
|
|
Ładowanie…
Reference in New Issue