gitignore
This commit is contained in:
26
setup.py
Normal file
26
setup.py
Normal file
@@ -0,0 +1,26 @@
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
|
||||
with open('README.md') as file:
|
||||
long_description = file.read()
|
||||
|
||||
setup(
|
||||
name="tpro",
|
||||
version="0.01",
|
||||
url='https://github.com/zevaverbach/tpro',
|
||||
install_requires=[
|
||||
'Click',
|
||||
'nltk',
|
||||
],
|
||||
include_package_data=True,
|
||||
packages=find_packages(),
|
||||
description=(
|
||||
'tpro processes transcripts from speech-to-text services and outputs '
|
||||
'to various formats.'),
|
||||
long_description_content_type='text/markdown',
|
||||
long_description=long_description,
|
||||
entry_points='''
|
||||
[console_scripts]
|
||||
tpro=tpro.tpro:cli
|
||||
''',
|
||||
)
|
||||
Reference in New Issue
Block a user