From 6b1edeee9cfb01e73b10b044d549bf05f76d1e7b Mon Sep 17 00:00:00 2001 From: Felix <felixwelter@gmail.com> Date: Fri, 24 Apr 2020 09:10:13 +0200 Subject: [PATCH] Fix readme typo --- README.md | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7818d4a..87a96d0 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Install via `pip install lexicon_overlap_score` # Usage Import via `import lexicon_overlap_score as los` -Your lexicons should be pandas dataframe with the columns `word` and `so` (semantic orientation). +Your lexicons should be a pandas dataframe with the columns `word` and `so` (semantic orientation). Then the following three functions can be used. ``` python diff --git a/setup.py b/setup.py index d5552b0..e0917f9 100644 --- a/setup.py +++ b/setup.py @@ -4,8 +4,8 @@ with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( - name="lexicon_overlap_score", # Replace with your own username - version="0.0.5", + name="lexicon_overlap_score", + version="0.0.6", author="Felix Welter", author_email="felixwelter@gmail.com", description="Functions for calculation of the lexicon overlap score", -- GitLab