File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
2
3
- from setuptools import setup , find_packages
3
+ """
4
+ Sentry-Python - Sentry SDK for Python
5
+ =====================================
4
6
5
- # read the contents of your README file
6
- from os import path
7
+ **Sentry-Python is an experimental SDK for Sentry.** Check out `GitHub
8
+ <https://github.com/getsentry/sentry-python>`_ to find out more.
9
+ """
7
10
8
- this_directory = path .abspath (path .dirname (__file__ ))
9
- with open (path .join (this_directory , "README.md" )) as f :
10
- long_description = "\n " .join (f .read ().splitlines ()[6 :])
11
+ from setuptools import setup , find_packages
11
12
12
13
setup (
13
14
name = "sentry-sdk" ,
16
17
17
18
url = "https://github.com/getsentry/sentry-python" ,
18
19
description = "Python client for Sentry (https://getsentry.com)" ,
19
- long_description = long_description ,
20
- long_description_content_type = "text/markdown" ,
20
+ long_description = __doc__ ,
21
21
packages = find_packages (exclude = ("tests" , "tests.*" )),
22
22
zip_safe = False ,
23
23
license = "BSD" ,
You can’t perform that action at this time.
0 commit comments