diff --git a/README.md b/README.md index 5b7de47..e80e679 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,4 @@ -wordfreq is a Python library for looking up the frequencies of words in many -languages, based on many sources of data. +wordfreq is a Python library for looking up the frequencies of words in many languages, based on many sources of data. Author: Robyn Speer diff --git a/setup.py b/setup.py index 620a67e..0619f8e 100755 --- a/setup.py +++ b/setup.py @@ -33,19 +33,20 @@ dependencies = [ if sys.version_info < (3, 4): dependencies.append('pathlib') - setup( name="wordfreq", version='2.0.1', maintainer='Luminoso Technologies, Inc.', maintainer_email='info@luminoso.com', url='http://github.com/LuminosoInsight/wordfreq/', - license = "MIT", - platforms = ["any"], - description = doclines[0], - classifiers = classifiers, - long_description = "\n".join(doclines[2:]), + license="MIT", + platforms=["any"], + description=doclines[0], + classifiers=classifiers, + long_description=README_contents, + long_description_content_type='text/markdown', packages=['wordfreq'], + python_requires='>=3.3', include_package_data=True, install_requires=dependencies,