added descriptions to setup.py
This commit is contained in:
@@ -4,7 +4,7 @@ Tatt creates a uniform API for multiple speech-to-text (STT) services.
|
|||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
pip install git+https://github.com/zevaverbach/tatt
|
pip install tatt
|
||||||
|
|
||||||
|
|
||||||
## Dependencies
|
## Dependencies
|
||||||
|
|||||||
6
setup.py
6
setup.py
@@ -1,6 +1,9 @@
|
|||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
|
|
||||||
|
with open('README.md') as file:
|
||||||
|
long_description = file.read()
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="tatt",
|
name="tatt",
|
||||||
version="0.1",
|
version="0.1",
|
||||||
@@ -13,6 +16,9 @@ setup(
|
|||||||
],
|
],
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
|
description=('Tatt creates a uniform API for multiple speech-to-text '
|
||||||
|
'(STT) services.'),
|
||||||
|
long_description=long_description,
|
||||||
entry_points='''
|
entry_points='''
|
||||||
[console_scripts]
|
[console_scripts]
|
||||||
transcribe=tatt.transcribe:cli
|
transcribe=tatt.transcribe:cli
|
||||||
|
|||||||
Reference in New Issue
Block a user