forked from wiseman/py-webrtcvad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
102 lines (90 loc) · 3.31 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
from setuptools import setup, find_packages, Extension
import glob
import os.path
import sys
C_SRC_PREFIX = os.path.join('cbits', 'webrtc', 'common_audio')
C_SRC_RTC_PREFIX = os.path.join('cbits', 'webrtc', 'rtc_base')
c_sources = (
[os.path.join(
'cbits', 'pywebrtcvad.c')]
+ glob.glob(
os.path.join(
C_SRC_PREFIX,
'signal_processing',
'*.c'))
+ glob.glob(
os.path.join(
C_SRC_PREFIX,
'third_party',
'*.c'))
+ glob.glob(
os.path.join(
C_SRC_PREFIX,
'vad',
'*.c'))
+ glob.glob(
os.path.join(
C_SRC_RTC_PREFIX,
'checks.cc')))
define_macros = []
extra_compile_args = []
if sys.platform.startswith('win'):
define_macros.extend([('_WIN32', None), ('WEBRTC_WIN', None)])
else:
define_macros.extend([('WEBRTC_POSIX', None), ])
extra_compile_args.extend(['-std=c++11'])
module = Extension('_webrtcvad',
define_macros=define_macros,
extra_compile_args=extra_compile_args,
sources=c_sources,
include_dirs=['cbits'])
here = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the README file
with open(os.path.join(here, 'README.rst')) as f:
long_description = f.read()
setup(
name='webrtcvad',
author='John Wiseman',
author_email='jjwiseman@gmail.com',
version='2.0.11.dev0',
description=('Python interface to the Google WebRTC Voice '
'Activity Detector (VAD)'),
long_description=long_description,
url='https://github.com/wiseman/py-webrtcvad',
license='MIT',
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
# Indicate who your project is intended for
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Human Machine Interfaces',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: MIT License',
# Specify the Python versions you support here. In particular,
# ensure that you indicate whether you support Python 2,
# Python 3 or both.
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords='speechrecognition asr voiceactivitydetection vad webrtc',
ext_modules=[module],
py_modules=['webrtcvad'],
test_suite='nose.collector',
# List additional groups of dependencies here (e.g. development
# dependencies). You can install these using the following syntax,
# for example: $ pip install -e .[dev,test]
extras_require={
'dev': ['nose', 'check-manifest', 'unittest2', 'zest.releaser',
'psutil', 'memory_profiler']
})