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 128b9ae commit 8332310Copy full SHA for 8332310
setup.py
@@ -10,12 +10,20 @@
10
print("no version supplied")
11
sys.exit(1)
12
13
+def get_readme_md_contents():
14
+ """read the contents of your README file"""
15
+ with open("README.md", encoding='utf-8') as f:
16
+ long_description = f.read()
17
+ return long_description
18
+
19
setup(
20
name="polygon-api-client",
21
version=version,
22
description="Polygon API client",
- author_email="[email protected]",
- url="https://github.com/Polygon-io/client-python",
23
+ long_description=get_readme_md_contents(),
24
+ long_description_content_type="text/markdown",
25
+ author_email="[email protected]",
26
+ url="https://github.com/polygon-io/client-python",
27
packages=find_packages(),
28
classifiers=[
29
"License :: OSI Approved :: MIT License",
0 commit comments