-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
35 lines (33 loc) · 991 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="ocotillo",
packages=["ocotillo"],
version="1.0.5.1",
author="James",
author_email="james@adamant.ai",
description="A simple & fast speech transcription toolkit",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/neonbjb/ocotillo",
project_urls={},
install_requires=[
'tqdm',
'scipy',
'torch>=1.8',
'torchaudio>0.9',
'audio2numpy',
'transformers',
'tokenizers',
'requests',
'ffmpeg',
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
download_url = 'https://github.com/neonbjb/ocotillo/archive/refs/tags/1.0.5.tar.gz',
python_requires=">=3.6",
)