Skip to content

Commit

Permalink
Enable long description to show README on PyPI (GH-9)
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtyomVancyan authored Dec 2, 2022
2 parents 98f9018 + 8429b94 commit b9cef5e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@
assert "-" not in version
assert "." in version

# with open("README.md", "r", encoding="utf-8") as fp:
# long_description = fp.read()
with open("README.md", "r", encoding="utf-8") as fp:
long_description = fp.read()

setuptools.setup(
name="fuzzymap",
version=version,
author="Artyom Vancyan",
author_email="[email protected]",
description="Python dictionary with a FUZZY key-matching opportunity",
# long_description=long_description,
# long_description_content_type="text/markdown",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/pysnippet/fuzzymap",
packages=setuptools.find_packages(),
classifiers=[
Expand Down

0 comments on commit b9cef5e

Please sign in to comment.