We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 928d6e6 commit e4b5a32Copy full SHA for e4b5a32
setup.py
@@ -1,3 +1,5 @@
1
+"""Setup module for python-codex32."""
2
+
3
from setuptools import setup, find_packages
4
5
setup(
@@ -11,7 +13,6 @@
11
13
},
12
14
author="Ben Westgate",
15
description="A Python implementation of Codex32.",
- long_description=open("README.md").read(),
16
long_description_content_type="text/markdown",
17
url="https://github.com/BenWestgate/python-codex32",
18
classifiers=[
@@ -21,3 +22,5 @@
21
22
],
23
python_requires=">=3.7",
24
)
25
+with open("README.md", encoding="utf-8") as f:
26
+ long_description = f.read()
0 commit comments