-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.cfg
43 lines (40 loc) · 1.19 KB
/
setup.cfg
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
[metadata]
name = speaker-verification
version = 0.1.3
author = OnTrack UG Squad
author_email = [email protected]
description = The machine learning package examines audio files submitted from a user
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/OnTrack-UG-Squad/speaker-verification
project_urls =
Bug Tracker = https://github.com/OnTrack-UG-Squad/speaker-verification/issues
Pull Requests = https://github.com/OnTrack-UG-Squad/speaker-verification/pulls
classifiers =
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Topic :: Software Development :: Libraries
Topic :: Utilities
[options]
package_dir =
= .
packages = find:
python_requires = >=3.8, <3.9
zip_safe = True
include_package_data = True
install_requires =
audioread ==2.1.9
Keras ==2.3.1
librosa ==0.7.2
numba ==0.48.0
numpy ==1.18.5
python-speech-features ==0.6
tensorflow >=2.1.0
pytest
[options.packages.find]
where = .
[options.entry_points]
console_scripts =
speaker_verification = speaker_verification:main