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 11#!/usr/bin/env python
22
3- from setuptools import setup , find_packages
3+ """
4+ Sentry-Python - Sentry SDK for Python
5+ =====================================
46
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+ """
710
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
1112
1213setup (
1314 name = "sentry-sdk" ,
16171718 url = "https://github.com/getsentry/sentry-python" ,
1819 description = "Python client for Sentry (https://getsentry.com)" ,
19- long_description = long_description ,
20- long_description_content_type = "text/markdown" ,
20+ long_description = __doc__ ,
2121 packages = find_packages (exclude = ("tests" , "tests.*" )),
2222 zip_safe = False ,
2323 license = "BSD" ,
You can’t perform that action at this time.
0 commit comments