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 2
2
3
3
from setuptools import setup , find_packages
4
4
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
+
5
11
setup (
6
12
name = "sentry-sdk" ,
7
13
version = "0.1.0-preview3" ,
8
14
author = "Sentry Team and Contributors" ,
9
15
10
16
url = "https://github.com/getsentry/sentry-sdk" ,
11
17
description = "Python client for Sentry (https://getsentry.com)" ,
12
- long_description = __doc__ ,
18
+ long_description = long_description ,
19
+ long_description_content_type = 'text/markdown' ,
13
20
packages = find_packages (exclude = ("tests" , "tests.*" )),
14
21
zip_safe = False ,
15
22
license = "BSD" ,
You can’t perform that action at this time.
0 commit comments