File: setup.py

package info (click to toggle)
pyhamtools 0.11.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 33,012 kB
  • sloc: xml: 307,301; python: 3,454; makefile: 152
file content (25 lines) | stat: -rwxr-xr-x 658 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/env python
import os
from setuptools 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=[
          "requests>=2.21.0",
          "ephem>=4.1.3",
          "beautifulsoup4>=4.7.1",
          "lxml>=5.0.0",
          "redis>=2.10.6",
      ],
      **kw
     )