This repository has been archived by the owner on Oct 12, 2023. It is now read-only.
generated from KOLANICH/python_project_boilerplate.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (57 loc) · 2.65 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.2.0", "wheel", "setuptools_scm[toml]>=3.4.3"]
build-backend = "setuptools.build_meta"
[project]
name = "transformerz"
authors = [{name = "KOLANICH"}]
description = "Just a library implementing composable and stackable processor objects for data."
readme = "ReadMe.md"
keywords = ["processors", "json", "cbor", "msgpack", "bson"]
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",
]
requires-python = ">=3.4"
dynamic = ["version"]
[project.urls]
Homepage = "https://codeberg.org/KOLANICH-libs/transformerz.py"
[project.optional-dependencies]
lz4 = ["lz4"] # @ git+https://github.com/python-lz4/python-lz4
brotli = ["brotli"] # @ git+https://github.com/google/brotli
zstd = ["zstandard"] # @ git+https://github.com/indygreg/python-zstandard
implode = [
"pkblast", # @ git+https://codeberg.org/implode-compression-impls/pkblast.py
"pkimplode" # @ git+https://codeberg.org/implode-compression-impls/pkimplode.py
]
lrzip = ["lrzip"] # @ git+https://github.com/kata198/python-lrzip
lzfse = ["pyliblzfse"] # @ git+https://github.com/ydkhatri/pyliblzfse
lzfu = ["compressed_rtf"] # @ git+https://github.com/delimitry/compressed_rtf
lzham = ["pylzham"] # @ git+https://github.com/Galaxy1036/pylzham
lzjb = ["lzjb"] # @ git+https://github.com/unwind/python-lzjb
lzo = ["lzo"] # @ git+https://github.com/jd-boyd/python-lzo
lzss = ["lzss"] # @ git+https://github.com/yyogo/pylzss
ppmd = ["pyppmd"] # @ git+https://codeberg.org/miurahr/pyppmd
snappy = ["python-snappy"] # @ git+https://github.com/andrix/python-snappy
bson = ["pymongo"] # @ git+https://github.com/mongodb/mongo-python-driver
msgpack = ["msgpack"] # @ git+https://github.com/msgpack/msgpack-python
yaml = ["ruamel.yaml"] # https://sourceforge.net/p/ruamel-yaml/code/ci/default/tarball
libintl = ["polib"] # @ git+https://github.com/izimobil/polib/
neon = ["neon-py"] # @ git+https://github.com/paveldedik/neon-py
bencode = ["bencode"]
cbor = ["cbor2"] # @ git+https://github.com/agronholm/cbor2
hcl2 = ["python-hcl2"] # @ git+https://github.com/amplify-education/python-hcl2
rison = ["prison"] # @ git+https://github.com/betodealmeida/python-rison
ubjson = ["ubjson"] # @ git+https://github.com/Iotic-Labs/py-ubjson
[tool.setuptools]
zip-safe = true
include-package-data = false
[tool.setuptools.packages]
find = {namespaces = false, exclude=["libs", "tests"]}
[tool.setuptools_scm]