-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
28 lines (26 loc) · 994 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
import setuptools # type: ignore
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="fast-tools",
version="1.1.2",
author="so1n",
author_email="[email protected]",
description="fast-tools is a FastApi/Starlette toolset, Most of the tools can be used in FastApi/Starlette, "
"a few tools only support FastApi which is divided into the lack of compatibility with FastApi",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/so1n/fast-tools",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
extras_require={
"prometheus": ["prometheus-client==0.8.0"],
"pydantic": ["pydantic==1.7.20"],
"redis": ["aioredis==1.3.1"],
"statsd": ["aio_statsd==0.2.2.2"],
},
)