-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
60 lines (50 loc) · 2.03 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
import os
import shutil
import setuptools
os.system('git clean -dfx')
package_folder = os.path.join(os.path.dirname(__file__), 'pvfalcondemo')
os.mkdir(package_folder)
shutil.copy(os.path.join(os.path.dirname(__file__), '../../LICENSE'), package_folder)
shutil.copy(
os.path.join(os.path.dirname(__file__), 'falcon_demo_file.py'),
os.path.join(package_folder, 'falcon_demo_file.py'))
shutil.copy(
os.path.join(os.path.dirname(__file__), 'falcon_demo_mic.py'),
os.path.join(package_folder, 'falcon_demo_mic.py'))
with open(os.path.join(os.path.dirname(__file__), 'MANIFEST.in'), 'w') as f:
f.write('include pvfalcondemo/LICENSE\n')
f.write('include pvfalcondemo/falcon_demo_file.py\n')
f.write('include pvfalcondemo/falcon_demo_mic.py\n')
with open(os.path.join(os.path.dirname(__file__), 'README.md'), 'r') as f:
long_description = f.read()
with open(os.path.join(os.path.dirname(__file__), "requirements.txt"), "r") as f:
dependencies = f.read().strip().splitlines()
setuptools.setup(
name="pvfalcondemo",
version="1.0.4",
author="Picovoice",
author_email="[email protected]",
description="Falcon Speaker Diarization engine demos",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Picovoice/falcon",
packages=["pvfalcondemo"],
install_requires=dependencies,
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Sound/Audio :: Speech"
],
entry_points=dict(
console_scripts=[
'falcon_demo_file=pvfalcondemo.falcon_demo_file:main',
'falcon_demo_mic=pvfalcondemo.falcon_demo_mic:main',
],
),
python_requires='>=3.9',
keywords="Speaker Diarization, Speaker Identification, Voice Identification",
)