added descriptions to setup.py

This commit is contained in:
2019-02-12 20:18:08 -05:00
parent ae722a79f1
commit 355327afd7
2 changed files with 7 additions and 1 deletions

View File

@@ -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

View File

@@ -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