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 ea844bc commit c543731Copy full SHA for c543731
setup.py
@@ -3,8 +3,11 @@
3
4
base_dir = os.path.dirname(__file__)
5
6
+with open('README.md', 'r') as f:
7
+ long_description = f.read()
8
+
9
about = {}
-with open(os.path.join(base_dir, "workos", "__about__.py")) as f:
10
+with open(os.path.join(base_dir, 'workos', '__about__.py')) as f:
11
exec(f.read(), about)
12
13
setup(
@@ -14,6 +17,8 @@
14
17
author_email=about['__author_email__'],
15
18
url=about['__package_url__'],
16
19
description=about['__description__'],
20
+ long_description=long_description,
21
+ long_description_content_type='text/markdown',
22
packages=find_packages(exclude=['tests*', ]),
23
zip_safe=False,
24
license=about['__license__'],
0 commit comments