-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
64 lines (52 loc) · 1.99 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
#!/usr/bin/python3
# -*- coding: utf-8 -*-
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# OS : GNU/Linux Ubuntu 16.04 or 18.04
# LANGUAGE : Python 3.5.2 or later
# AUTHOR : Klim V. O.
# DATE : 14.10.2019
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
import os
from setuptools import setup, find_packages
__version__ = 1.4
with open(os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README.md'), encoding='utf-8') as f:
long_description = f.read()
install_requires = [
'pydub>=0.23.1',
'webrtcvad==2.0.10',
'librosa>=0.7.1'
]
setup(
name='webrtcvad-wrapper',
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts':
['webrtcvad_wrapper = webrtcvad_wrapper.cli:cli']
},
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries',
],
version=__version__,
install_requires=install_requires,
description='WebRTCVAD-Wrapper is a simple wrapper to simplify working with WebRTCVAD',
long_description=long_description,
long_description_content_type='text/markdown',
author='Vlad Klim',
author_email='valdsklim@gmail.com',
license='Apache 2.0',
url='https://github.com/Desklop/WebRTCVAD_Wrapper',
keywords='vad voice-activity-detection silence-suppression webrtc rtc dsp audio audio-processing wav nlp',
project_urls={
'Source': 'https://github.com/Desklop/WebRTCVAD_Wrapper',
}
)
print('\nWebRTCVAD-Wrapper is ready for work and defense!')
print('All information about the module is available at https://github.com/Desklop/WebRTCVAD_Wrapper')
# To build package run: python3 setup.py sdist