forked from sjlongland/aioax25
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.21 KB
/
setup.py
File metadata and controls
38 lines (35 loc) · 1.21 KB
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
#!/usr/bin/env python3
from setuptools import setup
from os.path import dirname, join
from aioax25 import __version__
requirements = [
'pyserial',
'signalslot',
]
setup(
name='aioax25',
url='https://github.com/sjlongland/aioax25/',
version=__version__,
author='Stuart Longland VK4MSL',
author_email='me@vk4msl.id.au',
license='GPL-2.0-or-later',
packages=[
'aioax25',
'aioax25.aprs',
],
requires=requirements,
install_requires=requirements,
description='Asynchronous AX.25 interface in pure Python using asyncio',
long_description=open(join(dirname(__file__), 'README.md'),'r').read(),
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: No Input/Output (Daemon)',
'Framework :: AsyncIO',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Operating System :: POSIX',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Communications :: Ham Radio'
]
)