mirror of
https://github.com/dh1tw/pyhamtools.git
synced 2025-12-06 06:52:00 +01:00
17 lines
380 B
Python
Executable file
17 lines
380 B
Python
Executable file
#!/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'],
|
|
install_requires=[
|
|
"pytz",
|
|
"requests",
|
|
]
|
|
)
|