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 1037bd7 commit 8138fd4Copy full SHA for 8138fd4
setup.py
@@ -1,6 +1,9 @@
1
"""Setup module for python-codex32."""
2
3
-from setuptools import setup, find_packages
+with open("README.md", encoding="utf-8") as f:
4
+ long_description = f.read()
5
+
6
+from setuptools import setup, find_packages # pylint: disable=import-error
7
8
setup(
9
name="python-codex32",
@@ -20,7 +23,5 @@
20
23
"License :: OSI Approved :: MIT License",
21
24
"Operating System :: OS Independent",
22
25
],
- python_requires=">=3.7",
26
+ python_requires=">=3.8",
27
)
-with open("README.md", encoding="utf-8") as f:
- long_description = f.read()
0 commit comments