-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
executable file
·44 lines (37 loc) · 1.17 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
#!/usr/bin/python2
from distutils.core import setup
import os
import glob
import sipclient
setup(
name='sipclients',
version=sipclient.__version__,
description='SIP SIMPLE client',
long_description='Python command line clients using the SIP SIMPLE framework',
url='http://sipsimpleclient.org',
author='AG Projects',
author_email='[email protected]',
platforms=['Platform Independent'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Service Providers',
'License :: GNU Lesser General Public License (LGPL)',
'Operating System :: OS Independent',
'Programming Language :: Python'
],
packages=['sipclient', 'sipclient.configuration'],
data_files=[('share/sipclients/sounds', glob.glob(os.path.join('resources', 'sounds', '*.wav')))],
scripts=[
'sip-audio-session',
'sip-message',
'sip-publish-presence',
'sip-register',
'sip-session',
'sip-settings',
'sip-subscribe-mwi',
'sip-subscribe-presence',
'sip-subscribe-rls',
'sip-subscribe-winfo',
'sip-subscribe-xcap-diff'
]
)