We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccdc7c1 commit 312ff20Copy full SHA for 312ff20
setup.py
@@ -2,14 +2,21 @@
2
3
from setuptools import setup, find_packages
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
+
11
setup(
12
name="sentry-sdk",
13
version="0.1.0-preview3",
14
author="Sentry Team and Contributors",
15
author_email="[email protected]",
16
url="https://github.com/getsentry/sentry-sdk",
17
description="Python client for Sentry (https://getsentry.com)",
- long_description=__doc__,
18
+ long_description=long_description,
19
+ long_description_content_type='text/markdown',
20
packages=find_packages(exclude=("tests", "tests.*")),
21
zip_safe=False,
22
license="BSD",
0 commit comments