-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
executable file
·60 lines (57 loc) · 1.87 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
53
54
55
56
57
58
59
60
#!/usr/bin/env python
#
# Copyright 2014 Sangoma Technologies Inc.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
from setuptools import setup
with open('README.rst', encoding='utf-8') as f:
readme = f.read()
setup(
name="switchio",
version='0.1.0.alpha1',
description='asyncio powered FreeSWITCH cluster control',
long_description=readme,
license='Mozilla',
author='Sangoma Technologies',
maintainer='Tyler Goodlet',
maintainer_email='tgoodlet@gmail.com',
url='https://github.com/friends-of-freeswitch/switchio',
platforms=['linux'],
packages=[
'switchio',
'switchio.apps',
'switchio.apps.measure',
],
entry_points={
'console_scripts': [
'switchio = switchio.cli:cli',
]
},
python_requires='>=3.6',
install_requires=['click', 'colorlog'],
package_data={
'switchio': ['../conf/switchiodp.xml']
},
extras_require={
'metrics': ['pandas>=0.18'],
'hdf5': ['tables==3.2.1.1'],
'graphing': ['matplotlib', 'pandas>=0.18'],
},
tests_require=['pytest'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Intended Audience :: Telecommunications Industry',
'Intended Audience :: Developers',
'Topic :: Communications :: Telephony',
'Topic :: Software Development :: Testing :: Traffic Generation',
'Topic :: System :: Clustering',
'Environment :: Console',
],
)