-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
38 lines (36 loc) · 1012 Bytes
/
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
import setuptools
with open("README.md") as f:
readmefile_contents = f.read()
setuptools.setup(
name="lidbox",
version="1.0.0-rc",
description="Spoken language identification out of the box with TensorFlow",
long_description=readmefile_contents,
long_description_content_type="text/markdown",
author="Matias Lindgren",
author_email="matias.lindgren@iki.fi",
url="https://github.com/py-lidbox/lidbox",
license="MIT",
python_requires=">= 3.7.*",
install_requires=[
"colorcet ~= 2.0.2",
"kaldiio ~= 2.13",
"matplotlib ~= 3.1",
"scikit-learn ~= 0.22.2",
"webrtcvad ~= 2.0.10",
"miniaudio ~= 1.37",
"pandas ~= 1.1.4",
],
packages=[
"lidbox",
"lidbox.data",
"lidbox.embed",
"lidbox.features",
"lidbox.meta",
"lidbox.models",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
)