Skip to content

Commit

Permalink
new set up for release
Browse files Browse the repository at this point in the history
  • Loading branch information
HannaHUp committed Oct 28, 2020
1 parent 1e6c57b commit 9472a56
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 3 deletions.
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Inside of setup.cfg
[metadata]
description-file = README.md
9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,12 @@
long_description = fh.read()

setuptools.setup(
name="transcription_compare",
version="0.0.14",
description="Compare transcription",
name="transcribe-compare",
version="0.1.0",
author="Huishen Zhan, Kuo Zhang, Jacek Jarmulak",
author_email="huishen@voicegain.ai, kuo@voicegain.ai, jacek@voicegain.ai",
description="Voicegain Compare transcription",
download_url='',
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
Expand Down
19 changes: 19 additions & 0 deletions setup_old.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import setuptools

# cli
REQUIRES = ["click", "inflect", "tqdm", "nltk", "metaphone", "bs4", "requests", "matplotlib", "seaborn"]

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

setuptools.setup(
name="transcription_compare",
version="0.0.14",
description="Compare transcription",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
install_requires=REQUIRES,
scripts=['transcribe-compare'],
include_package_data=True
)

0 comments on commit 9472a56

Please sign in to comment.