-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 1.34 KB
/
Copy pathsetup.py
File metadata and controls
28 lines (27 loc) · 1.34 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
from setuptools import setup
setup(name="libvbts",
version="0.0.1",
description="VBTS Tools for supporting community networks",
author="Kurtis Heimerl",
author_email="kheimerl@cs.berkeley.edu",
url="http://tier.cs.berkeley.edu",
packages=["libvbts"],
license='BSD',
scripts=[],
install_requires=['smspdu'],
data_files=[
("/usr/share/freeswitch/scripts",['freeswitch/VBTS_Parse_SMS.py',
'freeswitch/VBTS_New_User.py',
'freeswitch/VBTS_Send_SMS.py',
'freeswitch/VBTS_Send_Empty_SMS.py',
'freeswitch/VBTS_Send_SMS_Direct.py',
'freeswitch/VBTS_Send_Empty_SMS_Direct.py',
'freeswitch/VBTS_Wake_BTS.py',
'freeswitch/VBTS_Log_SMS.py',
'freeswitch/VBTS_DB_Get.py',
'freeswitch/VBTS_Get_Location.py',
'freeswitch/VBTS_Wait_for_PA.py',
'freeswitch/freeswitch.py',
'freeswitch/VBTS_DB_Set.py'])
]
)