File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ raise ValueError() # Will also create an event.
28
28
29
29
# Contributing to the SDK
30
30
31
- Please refer to [ CONTRIBUTING.md] ( . /CONTRIBUTING.md) .
31
+ Please refer to [ CONTRIBUTING.md] ( https://github.com/getsentry/sentry-python/blob/master /CONTRIBUTING.md) .
32
32
33
33
# License
34
34
35
- Licensed under the BSD license, see [ ` LICENSE ` ] ( . /LICENSE)
35
+ Licensed under the BSD license, see [ ` LICENSE ` ] ( https://github.com/getsentry/sentry-python/blob/master /LICENSE)
Original file line number Diff line number Diff line change 8
8
<https://github.com/getsentry/sentry-python>`_ to find out more.
9
9
"""
10
10
11
+ import os
11
12
from setuptools import setup , find_packages
12
13
14
+ here = os .path .abspath (os .path .dirname (__file__ ))
15
+
16
+
17
+ def get_file_text (file_name ):
18
+ with open (os .path .join (here , file_name )) as in_file :
19
+ return in_file .read ()
20
+
21
+
13
22
setup (
14
23
name = "sentry-sdk" ,
15
24
version = "0.19.1" ,
21
30
"Changelog" : "https://github.com/getsentry/sentry-python/blob/master/CHANGES.md" ,
22
31
},
23
32
description = "Python client for Sentry (https://sentry.io)" ,
24
- long_description = __doc__ ,
33
+ long_description = get_file_text ("README.md" ),
34
+ long_description_content_type = 'text/markdown' ,
25
35
packages = find_packages (exclude = ("tests" , "tests.*" )),
26
36
# PEP 561
27
37
package_data = {"sentry_sdk" : ["py.typed" ]},
You can’t perform that action at this time.
0 commit comments