Skip to content

Commit

Permalink
Update distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
neonbjb committed Feb 27, 2022
1 parent 82ec4c7 commit c9ddbad
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 0 deletions.
File renamed without changes.
2 changes: 2 additions & 0 deletions __init__.py
@@ -0,0 +1,2 @@
from api import Transcriber
from utils import load_wav_to_torch, load_audio
2 changes: 2 additions & 0 deletions setup.cfg
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
33 changes: 33 additions & 0 deletions setup.py
@@ -0,0 +1,33 @@
import setuptools

with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setuptools.setup(
name="ocotillo",
packages=["."],
version="1.0.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',
],
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.0.tar.gz',
python_requires=">=3.6",
)

0 comments on commit c9ddbad

Please sign in to comment.