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=[
2018-01-27 19:52:27 +01:00
"pytz>=2017.3",
"requests>=2.18.4",
"pyephem>=3.7.6.0",
"beautifulsoup4>=4.6.0",
"future>=0.16.0",
2018-01-27 23:37:09 +01:00
"redis>=2.10.6",
2014-04-30 08:56:08 +02:00
],
**kw
2014-04-24 14:01:53 +02:00
)