Skip to content

Commit

Permalink
Merge pull request #130 from berfr/add-pypi-description
Browse files Browse the repository at this point in the history
Add long description to PYPI project page
  • Loading branch information
jsvine authored Jun 17, 2020
2 parents 000ae8f + 26856ad commit 0f9e28c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,15 @@
with open(os.path.join(HERE, NAME, '__version__.py')) as f:
exec(f.read(), {}, version_ns)

with open(os.path.join(HERE, 'README.md')) as f:
long_description = f.read()

setup(
name="markovify",
version=version_ns['__version__'],
description="A simple, extensible Markov chain generator. Uses include generating random semi-plausible sentences based on an existing text.",
long_description="",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
Expand Down

0 comments on commit 0f9e28c

Please sign in to comment.