File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 22
33from setuptools import setup , find_packages
44
5+ # read the contents of your README file
6+ from os import path
7+ this_directory = path .abspath (path .dirname (__file__ ))
8+ with open (path .join (this_directory , 'README.md' ), encoding = 'utf-8' ) as f :
9+ long_description = f .read ()
10+
511setup (
612 name = "sentry-sdk" ,
713 version = "0.1.0-preview3" ,
814 author = "Sentry Team and Contributors" ,
915 author_email = "hello@getsentry.com" ,
1016 url = "https://github.com/getsentry/sentry-sdk" ,
1117 description = "Python client for Sentry (https://getsentry.com)" ,
12- long_description = __doc__ ,
18+ long_description = long_description ,
19+ long_description_content_type = 'text/markdown' ,
1320 packages = find_packages (exclude = ("tests" , "tests.*" )),
1421 zip_safe = False ,
1522 license = "BSD" ,
You can’t perform that action at this time.
0 commit comments