-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
26 lines (25 loc) · 907 Bytes
/
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
from __future__ import print_function
from setuptools import setup
setup(
name='SIPCallRecordVerify',
version="0.1",
url='https://github.com/LukeBeer/SIPCallRecordVerify',
license='MIT License',
author='Luke Berezynskyj',
install_requires=['pjsua', 'nltk'],
author_email='[email protected]',
description='Automated SIP call generator for verifying SIP Call Recording platforms',
packages=['sipcallrecordverify'],
include_package_data=True,
platforms='any',
classifiers = [
'Programming Language :: Python',
'Development Status :: 1 - Alpha',
'Natural Language :: English',
'Environment :: CLI',
'Intended Audience :: Voice Operations',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)