pyhamtools/setup.py

26 lines
658 B
Python
Raw Normal View History

2014-04-24 14:01:53 +02:00
#!/usr/bin/env python
import os
from setuptools import setup
2014-04-24 14:01:53 +02:00
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=[
2019-05-30 14:47:31 +02:00
"requests>=2.21.0",
"ephem>=4.1.3",
"beautifulsoup4>=4.7.1",
2025-03-02 00:07:00 +01:00
"lxml>=5.0.0",
"redis>=2.10.6",
2014-04-30 08:56:08 +02:00
],
**kw
2014-04-24 14:01:53 +02:00
)