mirror of
https://github.com/dh1tw/pyhamtools.git
synced 2026-04-21 06:13:57 +00:00
Added documentation for class Callinfo
This commit is contained in:
parent
ecf1b036e8
commit
624cea3942
19 changed files with 965 additions and 55 deletions
16
setup.py
16
setup.py
|
|
@ -1,16 +1,22 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
import sys
|
||||
from distutils.core import setup
|
||||
|
||||
kw = {}
|
||||
|
||||
if sys.version_info >= (3,):
|
||||
kw['use_2to3'] = True
|
||||
|
||||
setup(name='pyhamtools',
|
||||
version='0.1',
|
||||
description='Amateur Radio Callsign Lookup',
|
||||
version='0.1.1',
|
||||
description='Collection of Tools for Amateur Radio developers',
|
||||
author='Tobias Wellnitz, DH1TW',
|
||||
author_email='Tobias@dh1tw.de',
|
||||
url='http://github.com/dh1tw',
|
||||
url='http://github.com/dh1tw/pyhamtools',
|
||||
packages=['pyhamtools'],
|
||||
install_requires=[
|
||||
"pytz",
|
||||
"requests",
|
||||
]
|
||||
],
|
||||
**kw
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue