Skip to content

Commit

Permalink
Add README to PyPI long_description
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Aug 30, 2018
1 parent 9f3edbe commit da33da4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,15 @@

from setuptools import setup

with open("README.md") as f:
long_description = f.read()

setup(
name="fino",
version="0.4.0",
description="Output the Finnish word for a given integer.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/hugovk/fino",
author="hugovk",
keywords=["Finnish", "suomi", "numbers", "integers"],
Expand All @@ -30,6 +35,6 @@
"Topic :: Artistic Software",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)
)

# End of file

0 comments on commit da33da4

Please sign in to comment.