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 d3788da commit ccbce45Copy full SHA for ccbce45
setup.py
@@ -4,8 +4,9 @@
4
5
# read the contents of your README file
6
from os import path
7
+
8
this_directory = path.abspath(path.dirname(__file__))
-with open(path.join(this_directory, 'README.md')) as f:
9
+with open(path.join(this_directory, "README.md")) as f:
10
long_description = f.read()
11
12
setup(
@@ -16,7 +17,7 @@
16
17
url="https://github.com/getsentry/sentry-sdk",
18
description="Python client for Sentry (https://getsentry.com)",
19
long_description=long_description,
- long_description_content_type='text/markdown',
20
+ long_description_content_type="text/markdown",
21
packages=find_packages(exclude=("tests", "tests.*")),
22
zip_safe=False,
23
license="BSD",
0 commit comments