This repository has been archived by the owner on Feb 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
52 lines (43 loc) · 1.85 KB
/
setup.py
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
51
52
#!/usr/bin/env python2
from setuptools import setup, find_packages
import os
# Error-handling here is to allow package to be built w/o README included
pkg_root = os.path.dirname(__file__)
try: readme = open(os.path.join(pkg_root, 'README.rst')).read()
except IOError: readme = ''
setup(
name = 'PagingServer',
version = '19.5.2',
author = 'Dan Ryan, Mike Kazantsev',
author_email = '[email protected], [email protected]',
license = 'GPL-2',
keywords = [
'sip', 'telephony', 'phone', 'paging', 'announcement',
'autoanswer', 'callpipe', 'klaxon',
'pj', 'pjproject', 'pjsip', 'pjsua', 'pulse', 'pulseaudio', 'pa' ],
url = 'https://github.com/AccelerateNetworks/PagingServer',
description = 'SIP-based Announcement / PA / Paging / Public Address Server system',
long_description = readme,
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: No Input/Output (Daemon)',
'Environment :: Other Environment',
'Intended Audience :: Customer Service',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Natural Language :: English',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2 :: Only',
'Topic :: Communications :: Telephony',
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Multimedia :: Sound/Audio :: Mixers',
'Topic :: Multimedia :: Sound/Audio :: Speech' ],
install_requires = ['pulsectl'],
extras_require = {'sentry': ['raven']},
py_modules=['paging'],
entry_points = {
'console_scripts': ['paging = paging:main'] })