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.
2 parents 3f4ba54 + 0d6c333 commit 4667eb0Copy full SHA for 4667eb0
setup.py
@@ -4,12 +4,18 @@
4
5
from setuptools import find_packages, setup
6
7
+
8
+def readall(path):
9
+ with open(path, encoding="utf-8") as fp:
10
+ return fp.read()
11
12
13
setup(
14
name="django-debug-toolbar",
15
version="1.10.1",
16
description="A configurable set of panels that display various debug "
17
"information about the current request/response.",
- long_description=open("README.rst", encoding="utf-8").read(),
18
+ long_description=readall("README.rst"),
19
author="Rob Hudson",
20
author_email="[email protected]",
21
url="https://github.com/jazzband/django-debug-toolbar",
0 commit comments