diff --git a/README.md b/README.md index ed5dfd1..c8bedc8 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Tatt creates a uniform API for multiple speech-to-text (STT) services. ## Installation - pip install git+https://github.com/zevaverbach/tatt + pip install tatt ## Dependencies diff --git a/setup.py b/setup.py index f7113dc..7e139f1 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,9 @@ from setuptools import setup, find_packages +with open('README.md') as file: + long_description = file.read() + setup( name="tatt", version="0.1", @@ -13,6 +16,9 @@ setup( ], include_package_data=True, packages=find_packages(), + description=('Tatt creates a uniform API for multiple speech-to-text ' + '(STT) services.'), + long_description=long_description, entry_points=''' [console_scripts] transcribe=tatt.transcribe:cli