This repository was archived by the owner on Oct 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
43 lines (39 loc) · 1.39 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
[build-system]
requires = ["setuptools>=61.2.0", "wheel", "setuptools_scm[toml]>=3.4.3"]
build-backend = "setuptools.build_meta"
[project]
name = "Cache"
authors = [{name = "KOLANICH"}]
description = "Just a library implementing a dumb compressed cache for JSON-serializeable objects."
readme = "ReadMe.md"
keywords = ["cache"]
license = {text = "Unlicense"}
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: Public Domain",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
urls = {Homepage = "https://codeberg-org/KOLANICH-libs/Cache.py"}
requires-python = ">=3.4"
dependencies = [
"transformerz", # @ git+https://codeberg.org/KOLANICH-libs/transformerz.py
"pantarei", # @ git+https://codeberg.org/KOLANICH-libs/pantarei.py
]
dynamic = ["version"]
[project.optional-dependencies]
#bson = ["transformerz[bson]"] # it doesn't allow primitives (strings, ints) at root level and also is not the most compact binary JSON impl
cbor = ["transformerz[cbor]"]
msgpack = ["transformerz[msgpack]"]
lz4 = ["transformerz[lz4]"]
brotli = ["transformerz[brotli]"]
zstd = ["transformerz[zstandard]"]
lmdb = ["lmdb"]
[tool.setuptools]
zip-safe = true
packages = ["Cache", "Cache.storageBackends"]
[tool.setuptools_scm]