-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
119 lines (109 loc) · 2.89 KB
/
pyproject.toml
File metadata and controls
119 lines (109 loc) · 2.89 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[project]
name = "fastapi-cachekit"
version = "0.2.0"
description = "High-performance caching solution for FastAPI applications"
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
authors = [
{ name = "Bijay Nayak", email = "bijay6779@gmail.com" },
]
keywords = ["fastapi", "cache", "redis", "async", "python", 'starlette', 'asyncio']
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: FastAPI",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = [
"fastapi>=0.75.0",
"apscheduler>=3.4.0"
]
[project.urls]
Homepage = "https://github.com/devbijay/fast-cache"
Documentation = "https://devbijay.github.io/Fast-Cache/"
Repository = "https://github.com/devbijay/fast-cache.git"
Issues = "https://github.com/devbijay/fast-cache/issues"
[[tool.uv.index]]
name = "pypi"
url = "https://pypi.org/simple/"
publish-url = "https://upload.pypi.org/legacy/"
explicit = true
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true
[project.optional-dependencies]
redis = [
"redis>=4.2.0"
]
postgres = [
"psycopg[pool]>=3.2.9"
]
memcached = [
"aiomcache>=0.8.1",
"pymemcache>=4.0.0"
]
mongodb = [
"pymongo[snappy,gssapi]>=4.6.0"
]
firestore = [
'google-cloud-firestore>=2.3.0'
]
dynamodb = [
'boto3>=1.10.0',
'aioboto3>=6.0.0'
]
all = [
"redis>=4.2.0",
"psycopg[pool]>=3.2.9",
"apscheduler>=3.4.0",
"aiomcache>=0.8.1",
"pymemcache>=4.0.0",
"pymongo[snappy,gssapi,srv]>=4.6.0",
'google-cloud-firestore>=2.3.0',
'boto3>=1.10.0',
'aioboto3>=6.0.0'
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[dependency-groups]
dev = [
{include-group = "all-backends"},
"httpx>=0.28.1",
"mkdocs-material>=9.6.14",
"mkdocstrings[python]>=0.29.1",
"psycopg-binary>=3.2.9",
"pytest>=8.4.0",
"pytest-asyncio>=1.0.0",
"pytest-cov>=6.2.1",
"pytest-xdist>=3.7.0",
"testcontainers[postgres,redis,memcached]>=4.10.0",
"tox>=4.27.0",
"twine>=6.1.0",
"uvicorn[standard]>=0.34.3",
]
all-backends = [
"redis>=4.2.0",
"psycopg[pool]>=3.2.9",
"aiomcache>=0.8.1",
"pymemcache>=4.0.0",
"pymongo[snappy,gssapi,srv]>=4.6.0",
"google-cloud-firestore>=2.3.0",
"boto3>=1.10.0",
"aioboto3>=6.0.0",
]