python-hamtools/setup.py

23 wiersze
868 B
Python

2014-01-07 03:39:16 +00:00
#!/usr/bin/env python
2016-10-04 13:41:43 +00:00
from setuptools import setup
2014-01-07 03:39:16 +00:00
setup(
name='hamtools',
2016-10-04 13:41:43 +00:00
version='0.3',
description='N1YWB Python Ham Radio Tools',
2014-01-07 03:39:16 +00:00
author='Jeff Laughlin',
2016-10-04 13:22:55 +00:00
author_email='jeff@jefflaughlinconsulting.com',
2014-01-07 03:39:16 +00:00
url='https://github.com/n1ywb/python-hamtools',
2016-10-04 13:41:43 +00:00
download_url='https://github.com/n1ywb/python-hamtools/archive/0.3.zip',
packages = ['hamtools'],
package_data={'hamtools': ['ctydat/cty.dat']},
2014-01-07 03:39:16 +00:00
scripts = ['geolog', 'vk'],
install_requires = ['geojson', 'requests', 'requests-cache'],
2016-10-04 13:22:55 +00:00
keywords = ['ham', 'amateur', 'qrz', 'adif', 'cabrillo', 'kml', 'geojson', 'ctydat'],
2014-01-07 03:39:16 +00:00
long_description = (
"""Collection of amateur radio tools. Includes ability to read ADIF and
2016-10-04 13:22:55 +00:00
Cabrillo log files, cty.dat files, georeference callsigns via QRZ.com,
callook, and ctydat, and output GIS data in GeoJSON and KML formats.""")
2014-01-07 03:39:16 +00:00
)