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