-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (28 loc) · 827 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
"""Library Metadata Information."""
from setuptools import find_packages
from setuptools import setup
description = ("rate limiting filter for python logging module.")
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="logging_rate_limiter",
version="0.0.1",
author="hitesh jha",
author_email="[email protected]",
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/jha-hitesh/logging-rate-limiter",
packages=find_packages(
exclude=(
"tests"
)
),
license="",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
install_requires=[],
python_requires=">=3.6",
)