cachekit 0.0.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
cachekit/__init__.py
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"""
|
|
2
|
+
cachekit - Name reservation
|
|
3
|
+
|
|
4
|
+
This is a placeholder release to reserve the package name on PyPI.
|
|
5
|
+
The actual package is under development.
|
|
6
|
+
|
|
7
|
+
See: https://github.com/27b-io/cachekit
|
|
8
|
+
"""
|
|
9
|
+
|
|
10
|
+
__version__ = "0.0.1"
|
|
11
|
+
|
|
12
|
+
# Placeholder - do not use
|
|
13
|
+
raise NotImplementedError(
|
|
14
|
+
"This is a placeholder package for name reservation only. "
|
|
15
|
+
"The actual cachekit package is under development. "
|
|
16
|
+
"Follow https://github.com/27b-io/cachekit for updates."
|
|
17
|
+
)
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: cachekit
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Package name reservation - Redis caching toolkit for Python
|
|
5
|
+
Author-email: 27B <noreply@27b.io>
|
|
6
|
+
License: MIT
|
|
7
|
+
License-File: LICENSE
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
17
|
+
Requires-Python: >=3.9
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
|
|
20
|
+
# cachekit
|
|
21
|
+
|
|
22
|
+
**Name reservation - Project under development**
|
|
23
|
+
|
|
24
|
+
The `cachekit` package name has been reserved.
|
|
25
|
+
|
|
26
|
+
Full release coming soon at: https://github.com/27b-io/cachekit
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
30
|
+
**Do not use this version** - it's a placeholder for name reservation only.
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
cachekit/__init__.py,sha256=aKNi-SULtdsG5jXA4blp9X_8dkdgPb8UkC_KRwZsClI,448
|
|
2
|
+
cachekit-0.0.1.dist-info/METADATA,sha256=BKSzyCfphm2to_DeSJ676tEB514tccIvcwJHVurWhaQ,977
|
|
3
|
+
cachekit-0.0.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
4
|
+
cachekit-0.0.1.dist-info/licenses/LICENSE,sha256=EtwaeQ5IvICIOUFIGE5xt5-sKX42suVfCmdR9rjNq4c,1060
|
|
5
|
+
cachekit-0.0.1.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 27B
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|