mirror of
https://github.com/dh1tw/pyhamtools.git
synced 2025-12-06 06:52:00 +01:00
13 lines
306 B
Python
13 lines
306 B
Python
|
|
#!/usr/bin/env python
|
||
|
|
|
||
|
|
from distutils.core import setup
|
||
|
|
|
||
|
|
setup(name='pyhamtools',
|
||
|
|
version='0.1',
|
||
|
|
description='Amateur Radio Callsign Lookup',
|
||
|
|
author='Tobias Wellnitz, DH1TW',
|
||
|
|
author_email='Tobias@dh1tw.de',
|
||
|
|
url='http://github.com/dh1tw',
|
||
|
|
packages=['pyhamtools'],
|
||
|
|
)
|