-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 872 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
from setuptools import find_packages, setup
VERSION = "1.0.0"
with open("README.md", "r", encoding="utf-8") as readme:
long_description = readme.read()
setup(
name="fastapi-maintenance-mode",
version=VERSION,
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
url="https://github.com/iunary/fastapi-maintenance-mode",
license="MIT",
author="Yusuf",
author_email="contact@yusuf.im",
description="FastAPI middleware for enabling maintenance mode",
install_requires=[
"fastapi",
"httpx",
],
classifiers=[
"Framework :: FastAPI",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
],
)