File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change 10
10
print ("no version supplied" )
11
11
sys .exit (1 )
12
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
+
13
19
setup (
14
20
name = "polygon-api-client" ,
15
21
version = version ,
16
22
description = "Polygon API client" ,
17
- author_email = "ricky@polygon.io" ,
18
- 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 = "support@polygon.io" ,
26
+ url = "https://github.com/polygon-io/client-python" ,
19
27
packages = find_packages (),
20
28
classifiers = [
21
29
"License :: OSI Approved :: MIT License" ,
You can’t perform that action at this time.
0 commit comments