We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1429971 + 13bc229 commit eea2d0fCopy full SHA for eea2d0f
1 file changed
setup.py
@@ -1,3 +1,5 @@
1
+from pathlib import Path
2
+
3
from setuptools import find_packages, setup
4
5
@@ -8,6 +10,12 @@ def get_requirements(env=""):
8
10
return [x.strip() for x in fp.read().split("\n") if not x.startswith("#")]
9
11
12
13
+def get_readme() -> str:
14
+ this_directory = Path(__file__).parent
15
+ long_description = (this_directory / "README.md").read_text()
16
+ return long_description
17
18
19
setup(
20
name="permit",
21
version="2.3.0",
@@ -18,6 +26,8 @@ def get_requirements(env=""):
26
python_requires=">=3.8",
27
description="Permit.io python sdk",
28
install_requires=get_requirements(),
29
+ long_description=get_readme(),
30
+ long_description_content_type="text/markdown",
31
classifiers=[
22
32
"Operating System :: OS Independent",
23
33
"Programming Language :: Python",
0 commit comments