Jeff Laughlin 2016-10-04 09:22:55 -04:00
rodzic af4ecfddf1
commit 76ab3fc1bd
2 zmienionych plików z 8 dodań i 5 usunięć

2
setup.cfg 100644
Wyświetl plik

@ -0,0 +1,2 @@
[metadata]
description-file = README.md

Wyświetl plik

@ -4,18 +4,19 @@ from distutils.core import setup
setup(
name='hamtools',
version='0.1',
version='0.2',
description='N1YWB Python Ham Radio Tools',
author='Jeff Laughlin',
author_email='n1ywb@arrl.net',
author_email='jeff@jefflaughlinconsulting.com',
url='https://github.com/n1ywb/python-hamtools',
download_url='https://github.com/n1ywb/python-hamtools/archive/0.2.zip',
packages = ['hamtools'],
package_data={'hamtools': ['ctydat/cty.dat']},
scripts = ['geolog', 'vk'],
install_requires = ['geojson', 'requests', 'requests-cache'],
keywords = ['ham', 'amateur', 'qrz', 'adif', 'cabrillo', 'kml', 'geojson', 'ctydat'],
long_description = (
"""Collection of amateur radio tools. Includes ability to read ADIF and
Cabrillo log files, cty.dat files, georeference callsigns via QRZ.com and
cty.dat, and output GIS data in GeoJSON and KML formats.""")
Cabrillo log files, cty.dat files, georeference callsigns via QRZ.com,
callook, and ctydat, and output GIS data in GeoJSON and KML formats.""")
)