Skip to content

Commit 7db5641

Browse files
committed
fix: give up on readmes on pypi
1 parent 3afc747 commit 7db5641

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

setup.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
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

1213
setup(
1314
name="sentry-sdk",
@@ -16,8 +17,7 @@
1617
author_email="[email protected]",
1718
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",

0 commit comments

Comments
 (0)