File tree Expand file tree Collapse file tree 1 file changed +15
-4
lines changed
Expand file tree Collapse file tree 1 file changed +15
-4
lines changed Original file line number Diff line number Diff line change 1+ from textwrap import dedent
2+
13from setuptools import find_packages , setup
24
35setup (
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" ,
122313- url = "https://www.puzzleyou.de /" ,
24+ url = "https://github.com/puzzleYOU/python-logging-filters /" ,
1425 license = "GPLv3" ,
1526 platforms = ["any" ],
1627 packages = find_packages (),
You can’t perform that action at this time.
0 commit comments