Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a5ad309

Browse files
setup.py
1 parent 969bc89 commit a5ad309

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

setup.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)