File: setup.py

package info (click to toggle)
python-aprslib 0.7.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 352 kB
  • sloc: python: 2,973; makefile: 216
file content (40 lines) | stat: -rw-r--r-- 1,528 bytes parent folder | download
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python

from setuptools import setup, find_packages
from codecs import open
from os import path

from aprslib import __version__ as lib_version

here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
    long_description = f.read()\
                        .replace('.io/en/latest/', '.io/en/stable/')\
                        .replace('?badge=latest', '?badge=stable')\
                        .replace('projects/aprs-python/badge/?version=latest', 'projects/aprs-python/badge/?version=stable')

setup(
    name='aprslib',
    version=lib_version,
    description='Module for accessing APRS-IS and parsing APRS packets',
    long_description=long_description,
    url='https://github.com/rossengeorgiev/aprs-python',
    author='Rossen Georgiev',
    author_email='hello@rgp.io',
    license='GPLv2',
    classifiers=[
        'Development Status :: 4 - Beta',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
        'Programming Language :: Python',
        'Programming Language :: Python :: 2',
        'Programming Language :: Python :: 3',
        'Programming Language :: Python :: Implementation :: PyPy',
        'Topic :: Communications :: Ham Radio',
    ],
    test_suite='tests',
    keywords='aprs aprslib parse parsing aprs-is library base91',
    packages=['aprslib'] + ['aprslib.'+x for x in find_packages(where='aprslib')],
    install_requires=[],
    zip_safe=True,
)