-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (36 loc) · 863 Bytes
/
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
[build-system]
requires = ["scikit-build-core"]
build-backend = "scikit_build_core.build"
[tool.scikit-build]
build-dir = "build/{wheel_tag}"
sdist.include = ["*.pyi", "*.h"]
wheel.py-api = "cp312"
cmake.source-dir = "."
[project]
name = "caterpillar"
version = "2.2.3"
description="Library to pack and unpack structurized binary data."
authors = [
{ name="MatrixEditor", email="[email protected]" },
]
readme = "README.md"
classifiers = [
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.12',
]
[project.urls]
"Homepage" = "https://github.com/MatrixEditor/caterpillar"
"API-Docs" = "https://matrixeditor.github.io/caterpillar"
[project.optional-dependencies]
# compression
lzo = [
"lzallright"
]
crypt = [
"cryptography"
]
all = [
"lzallright",
"cryptography"
]