-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (15 loc) · 849 Bytes
/
setup.py
File metadata and controls
17 lines (15 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from distutils.core import setup, Extension
setup (name = 'FreeSWITCH-esl-python',
version = '0.1vdev',
ext_modules=[Extension('_ESL',sources=['swig/esl_wrap.cpp',
'src/esl.c',
'src/esl_json.c',
'src/esl_event.c',
'src/esl_threadmutex.c',
'src/esl_config.c',
'src/esl_oop.cpp',
'src/esl_buffer.c'],
include_dirs=['include/'])],
packages = ['freeswitchESL'],
pymodules = ['ESL'],
description = 'Auto-generated swig python module for FreeSWITCH mod_esl with a binary component.',)