pyhamtools/setup.py

25 lines
574 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
2014-04-24 14:01:53 +02:00
from distutils.core import setup
2014-04-30 08:56:08 +02:00
kw = {}
if sys.version_info >= (3,):
kw['use_2to3'] = True
2014-04-24 14:01:53 +02:00
setup(name='pyhamtools',
version='0.4.1',
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",
"requests",
"pyephem",
2014-04-30 08:56:08 +02:00
],
**kw
2014-04-24 14:01:53 +02:00
)