kopia lustrzana https://github.com/n1ywb/python-hamtools
22 wiersze
680 B
Python
22 wiersze
680 B
Python
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup
|
|
|
|
setup(
|
|
name='hamtools',
|
|
version='0.1',
|
|
description='N1YWB Python Ham Radio Tools',
|
|
author='Jeff Laughlin',
|
|
author_email='n1ywb@arrl.net',
|
|
url='https://github.com/n1ywb/python-hamtools',
|
|
packages = ['hamtools'],
|
|
package_data={'hamtools': ['ctydat/cty.dat']},
|
|
scripts = ['geolog', 'vk'],
|
|
install_requires = ['geojson', 'requests', 'requests-cache'],
|
|
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.""")
|
|
)
|
|
|