Skip to content

Commit 001e18c

Browse files
committed
Enable long description to show README on PyPI
1 parent 7b9ac03 commit 001e18c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@
2121
assert "-" not in version
2222
assert "." in version
2323

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

2727
setuptools.setup(
2828
name="fuzzymap",
2929
version=version,
3030
author="Artyom Vancyan",
3131
author_email="[email protected]",
3232
description="Python dictionary with a FUZZY key-matching opportunity",
33-
# long_description=long_description,
34-
# long_description_content_type="text/markdown",
33+
long_description=long_description,
34+
long_description_content_type="text/markdown",
3535
url="https://github.com/pysnippet/fuzzymap",
3636
packages=setuptools.find_packages(),
3737
classifiers=[

0 commit comments

Comments
 (0)