Jeff Laughlin 2016-10-04 09:41:43 -04:00
rodzic 76ab3fc1bd
commit 3be9218477
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -1,15 +1,15 @@
#!/usr/bin/env python #!/usr/bin/env python
from distutils.core import setup from setuptools import setup
setup( setup(
name='hamtools', name='hamtools',
version='0.2', version='0.3',
description='N1YWB Python Ham Radio Tools', description='N1YWB Python Ham Radio Tools',
author='Jeff Laughlin', author='Jeff Laughlin',
author_email='jeff@jefflaughlinconsulting.com', 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', download_url='https://github.com/n1ywb/python-hamtools/archive/0.3.zip',
packages = ['hamtools'], packages = ['hamtools'],
package_data={'hamtools': ['ctydat/cty.dat']}, package_data={'hamtools': ['ctydat/cty.dat']},
scripts = ['geolog', 'vk'], scripts = ['geolog', 'vk'],