-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (56 loc) · 2.19 KB
/
pyproject.toml
File metadata and controls
66 lines (56 loc) · 2.19 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
[build-system]
requires = ["scikit-build-core>=0.9", "pybind11>=2.13"]
build-backend = "scikit_build_core.build"
[project]
name = "signet-forge"
version = "0.1.1"
description = "Standalone C++20 Parquet library with AI-native extensions — Python bindings"
readme = "README.md"
# Licensed under AGPL-3.0-or-later (open source) with a Commercial License Exception
# for proprietary/hosted use (see LICENSE_COMMERCIAL). CLA required for contributions.
license = {text = "AGPL-3.0-or-later"}
requires-python = ">=3.10"
keywords = ["parquet", "columnar", "ai", "compliance", "mifid2", "eu-ai-act", "audit-trail", "feature-store"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
"Topic :: Office/Business :: Financial",
]
dependencies = ["numpy>=1.24"]
[project.optional-dependencies]
dev = ["pytest>=8.0", "numpy>=1.24"]
[project.urls]
Homepage = "https://github.com/SIGNETSTACK/signet-forge"
Repository = "https://github.com/SIGNETSTACK/signet-forge"
[tool.scikit-build]
cmake.build-type = "Release"
cmake.args = ["-DSIGNET_BUILD_PYTHON=ON"]
wheel.packages = ["python/signet_forge"]
install.components = ["python"]
[tool.scikit-build.cmake.define]
SIGNET_BUILD_PYTHON = "ON"
SIGNET_BUILD_TESTS = "OFF"
SIGNET_BUILD_AI_AUDIT = "ON"
[tool.cibuildwheel]
build = "cp310-* cp311-* cp312-*"
skip = "*-musllinux_i686 *-manylinux_i686 pp*"
test-requires = ["pytest>=8.0", "numpy>=1.24"]
test-command = "pytest {project}/python/tests/ -v"
[tool.cibuildwheel.linux]
archs = ["x86_64", "aarch64"]
before-all = "yum install -y ninja-build || apt-get install -y ninja-build"
[tool.cibuildwheel.macos]
archs = ["x86_64", "arm64"]
[tool.cibuildwheel.windows]
archs = ["AMD64"]
[tool.pytest.ini_options]
testpaths = ["python/tests"]