forked from a-luna/fastapi-redis-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
69 lines (66 loc) · 1.96 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# flake8: noqa
"""Installation script for fastapi-redis-cache."""
from pathlib import Path
from setuptools import find_packages, setup
DESCRIPTION = "A simple and robust caching solution for FastAPI endpoints, fueled by the unfathomable power of Redis."
APP_ROOT = Path(__file__).parent
README = (APP_ROOT / "README.md").read_text().strip()
AUTHOR = "Aaron Luna"
AUTHOR_EMAIL = "contact@aaronluna.dev"
PROJECT_URLS = {
"Bug Tracker": "https://github.com/a-luna/fastapi-redis-cache/issues",
"Source Code": "https://github.com/a-luna/fastapi-redis-cache",
}
CLASSIFIERS = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
]
INSTALL_REQUIRES = [
"fastapi",
"pydantic",
"python-dateutil",
"redis",
]
DEV_REQUIRES = [
"black",
"coverage",
"fakeredis",
"flake8",
"isort",
"pytest",
"pytest-cov",
"pytest-flake8",
"pytest-random-order",
"requests",
]
exec(open(str(APP_ROOT / "src/fastapi_redis_cache/version.py")).read())
setup(
name="fastapi-redis-cache",
description=DESCRIPTION,
long_description=README,
long_description_content_type="text/markdown",
version=__version__,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
maintainer=AUTHOR,
maintainer_email=AUTHOR_EMAIL,
license="MIT",
url=PROJECT_URLS["Source Code"],
project_urls=PROJECT_URLS,
packages=find_packages(where="src"),
package_dir={"": "src"},
include_package_data=True,
python_requires=">=3.7",
classifiers=CLASSIFIERS,
install_requires=INSTALL_REQUIRES,
extras_require={"dev": DEV_REQUIRES},
)