Skip to content

Commit e4b5a32

Browse files
committed
Update setup.py
1 parent 928d6e6 commit e4b5a32

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"""Setup module for python-codex32."""
2+
13
from setuptools import setup, find_packages
24

35
setup(
@@ -11,7 +13,6 @@
1113
},
1214
author="Ben Westgate",
1315
description="A Python implementation of Codex32.",
14-
long_description=open("README.md").read(),
1516
long_description_content_type="text/markdown",
1617
url="https://github.com/BenWestgate/python-codex32",
1718
classifiers=[
@@ -21,3 +22,5 @@
2122
],
2223
python_requires=">=3.7",
2324
)
25+
with open("README.md", encoding="utf-8") as f:
26+
long_description = f.read()

0 commit comments

Comments
 (0)