-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (23 loc) · 812 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
from setuptools import find_packages, setup
VERSION = "1.0.1"
with open("README.md", "r") as readme:
long_description = readme.read()
setup(
name="fastapi_redis_rate_limiter",
version=VERSION,
description="fastapi rate limiter middleware",
packages=find_packages(exclude=["tests"]),
long_description=long_description,
long_description_content_type="text/markdown",
author="Yusuf",
author_email="contact@yusuf.im",
url="https://github.com/iunary/fastapi-redis-rate-limiter",
license="MIT",
install_requires=["fastapi", "redis", "starlette", "httpx"],
keywords=["fastapi rate limiter", "redis", "middleware"],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
)