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.
1 parent 969bc89 commit a5ad309Copy full SHA for a5ad309
setup.py
@@ -0,0 +1,18 @@
1
+from setuptools import find_packages, setup
2
+
3
+setup(
4
+ name="python-logging-filters",
5
+ version="0.1.0",
6
+ description=(
7
+ "Simple filters for standard python logging, e.g. for suppressing "
8
+ "noisy 3rd party framework logging."
9
+ ),
10
+ author="puzzleYOU GmbH",
11
+ author_email="[email protected]",
12
+ url="https://www.puzzleyou.de/",
13
+ license="GPLv3",
14
+ platforms=["any"],
15
+ packages=find_packages(),
16
+ install_requires=[],
17
+ zip_safe=True,
18
+)
0 commit comments