Skip to content

Commit cd499e4

Browse files
committed
fix: slice out html for pypi readme
1 parent 5b9a0ec commit cd499e4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
<a href="https://sentry.io" target="_blank" align="center">
33
<img src="https://sentry-brand.storage.googleapis.com/sentry-logo-black.png" width="280">
44
</a>
5-
<br/>
6-
<h1>sentry-python - Sentry SDK for Python</h1>
75
</p>
86

7+
# sentry-python - Sentry SDK for Python
8+
99
[![Build Status](https://travis-ci.com/getsentry/sentry-python.svg?branch=master)](https://travis-ci.com/getsentry/sentry-python)
1010

1111
***Sentry-Python is an experimental SDK for Sentry.*** For a stable one, use
1212
[raven](https://github.com/getsentry/raven-python).
1313

14-
# Getting started with the new Sentry SDK for Python
14+
## Getting started with the new Sentry SDK for Python
1515

1616
Install this package with ``pip install sentry-sdk``. Then, in your code:
1717

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
this_directory = path.abspath(path.dirname(__file__))
99
with open(path.join(this_directory, "README.md")) as f:
10-
long_description = f.read()
10+
long_description = ''.join(f.read().splitlines()[6:])
1111

1212
setup(
1313
name="sentry-sdk",

0 commit comments

Comments
 (0)