pyhamtools/setup.py

28 lines
706 B
Python
Raw Normal View History

2014-04-24 14:01:53 +02:00
#!/usr/bin/env python
2014-04-30 08:56:08 +02:00
import sys
import os
2014-04-24 14:01:53 +02:00
from distutils.core import setup
2014-04-30 08:56:08 +02:00
kw = {}
exec(open(os.path.join("pyhamtools","version.py")).read())
2014-04-24 14:01:53 +02:00
setup(name='pyhamtools',
version=__release__,
2014-04-30 08:56:08 +02:00
description='Collection of Tools for Amateur Radio developers',
2014-04-24 14:01:53 +02:00
author='Tobias Wellnitz, DH1TW',
author_email='Tobias@dh1tw.de',
2014-04-30 08:56:08 +02:00
url='http://github.com/dh1tw/pyhamtools',
package_data={'': ['countryfilemapping.json']},
2014-04-24 14:01:53 +02:00
packages=['pyhamtools'],
2014-04-24 14:30:20 +02:00
install_requires=[
"pytz>=2019.1",
2019-05-30 14:47:31 +02:00
"requests>=2.21.0",
2018-01-27 19:52:27 +01:00
"pyephem>=3.7.6.0",
"beautifulsoup4>=4.7.1",
"future>=0.17.1",
"redis>=2.22.0",
2014-04-30 08:56:08 +02:00
],
**kw
2014-04-24 14:01:53 +02:00
)