-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (42 loc) · 1.09 KB
/
setup.py
File metadata and controls
51 lines (42 loc) · 1.09 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
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
# coding=utf8
from setuptools import setup, find_packages
required_modules = [
'argparse',
'audiogen',
'bitarray',
]
extras_require = {
'soundcard_output': ['PyAudio'],
}
with open("README.rst", "rb") as f:
readme = f.read().decode('utf8')
setup(
name="afsk",
version="0.0.3",
description=u"Bell 202 Audio Frequency Shift Keying encoder and APRS packet audio tools",
author="Christopher H. Casebeer",
author_email="",
url="https://github.com/casebeer/afsk",
packages=find_packages(exclude='tests'),
install_requires=required_modules,
extras_require=extras_require,
tests_require=["nose", "crc16"],
test_suite="nose.collector",
entry_points={
"console_scripts": [
"aprs = afsk.ax25:main"
]
},
long_description=readme,
classifiers=[
"Environment :: Console",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Communications :: Ham Radio",
]
)