Skip to content

Commit

Permalink
clean up the README.MD
Browse files Browse the repository at this point in the history
  • Loading branch information
nikvaes committed Jun 19, 2018
1 parent 25491cb commit 7dc44f2
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -7,7 +7,7 @@ using the
algorithm. Because this algorithm computes the character-level minimum-edit distance, every word in a sentence is assigned a
unique integer, and the edit-distance is computed over a string of integers.

# Installiation
# Installation

You should be able to install this package using pip:

Expand Down
1 change: 1 addition & 0 deletions requirements.txt
@@ -0,0 +1 @@
numpy
30 changes: 20 additions & 10 deletions setup.py
@@ -1,12 +1,22 @@
from setuptools import setup

setup(name='jiwer',
version='1.0',
description='Approximate the WER of an ASR transcript',
url='https://github.com/jitsi/asr-wer/',
author='Nik Vaessen',
author_email='nikvaes@gmail.com',
license='Apache 2',
packages=['jiwer'],
install_requires=["numpy"],
zip_safe=False)
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setup(
name='jiwer',
version='1.3',
description='Approximate the WER of an ASR transcript',
url='https://github.com/jitsi/asr-wer/',
author='Nik Vaessen',
author_email='nikvaes@gmail.com',
license='Apache 2',
packages=['jiwer'],
install_requires=["numpy"],
zip_safe=False,
long_description=long_description,
long_description_content_type='text/markdown'
)

0 comments on commit 7dc44f2

Please sign in to comment.