mirror of
https://github.com/dh1tw/pyhamtools.git
synced 2025-12-06 06:52:00 +01:00
28 lines
706 B
Python
Executable file
28 lines
706 B
Python
Executable file
#!/usr/bin/env python
|
|
import sys
|
|
import os
|
|
from distutils.core import setup
|
|
|
|
kw = {}
|
|
|
|
exec(open(os.path.join("pyhamtools","version.py")).read())
|
|
|
|
setup(name='pyhamtools',
|
|
version=__release__,
|
|
description='Collection of Tools for Amateur Radio developers',
|
|
author='Tobias Wellnitz, DH1TW',
|
|
author_email='Tobias@dh1tw.de',
|
|
url='http://github.com/dh1tw/pyhamtools',
|
|
package_data={'': ['countryfilemapping.json']},
|
|
packages=['pyhamtools'],
|
|
install_requires=[
|
|
"pytz>=2019.1",
|
|
"requests>=2.21.0",
|
|
"pyephem>=3.7.6.0",
|
|
"beautifulsoup4>=4.7.1",
|
|
"future>=0.17.1",
|
|
"redis>=2.22.0",
|
|
],
|
|
**kw
|
|
)
|