-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (46 loc) · 1.29 KB
/
setup.py
File metadata and controls
48 lines (46 loc) · 1.29 KB
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
import setuptools
with open("README.md", "r", encoding="utf-8") as fd:
long_description = fd.read()
setuptools.setup(
name="deep-neural-transcriber", # Replace with your own username
version="0.0.1",
author="Claudio Pilotti",
author_email="claudio.pilotti@bluewin.ch",
description="Deep Neural Transcriber",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/strfx/deep-neural-transcriber",
project_urls={
"Bug Tracker": "https://github.com/strfx/deep-neural-transcriber/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points={
"console_scripts": ['deep-neural-transcriber=dnt.cli:main'],
},
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.8.0",
install_requires=[
'deepspeech-tflite==0.9.3',
'num2words',
'Flask',
'docopt',
'tqdm',
'pydub',
'requests',
'wave',
'toolz',
'nltk',
],
extras_requires={
'dev': [
'pytest',
'pytest-cov',
'mypy'
]
}
)