Skip to content

Commit 1af156b

Browse files
setup.py: proper homepage, clear and concise description
1 parent 75313ed commit 1af156b

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

setup.py

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,27 @@
1+
from textwrap import dedent
2+
13
from setuptools import find_packages, setup
24

35
setup(
46
name="python-logging-filters",
57
version="0.1.0",
68
description="standard python logging filters",
7-
long_description=(
8-
"Simple filters for standard python logging, e.g. for suppressing "
9-
"noisy 3rd party framework logging."
9+
long_description=dedent(
10+
"""
11+
Simple filters for standard python logging, e.g. for suppressing
12+
noisy 3rd party framework logging.
13+
14+
# DjangoHttp404LogFilter
15+
16+
Suppresses Django's default 'Not Found: ...' logging.
17+
See the `python_logging_filters.DjangoHttp404LogFilter`
18+
and the official Django documentation for more details how
19+
to use and configure that filter.
20+
"""
1021
),
1122
author="puzzleYOU GmbH",
1223
author_email="[email protected]",
13-
url="https://www.puzzleyou.de/",
24+
url="https://github.com/puzzleYOU/python-logging-filters/",
1425
license="GPLv3",
1526
platforms=["any"],
1627
packages=find_packages(),

0 commit comments

Comments
 (0)