-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (54 loc) · 1.62 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (54 loc) · 1.62 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
[build-system]
requires = ["maturin==1.13.3"]
build-backend = "maturin"
[project]
name = "solverforge"
version = "0.6.6"
description = "Dynamic Python bindings for the SolverForge constraint solver."
readme = "README.md"
license = { text = "Apache-2.0" }
requires-python = ">=3.14"
authors = [{ name = "SolverForge" }]
dependencies = []
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Rust",
"Typing :: Typed",
"Topic :: Scientific/Engineering",
]
keywords = ["constraint-solving", "optimization", "planning", "solverforge"]
[project.optional-dependencies]
examples = [
"fastapi>=0.115,<1",
"uvicorn>=0.32,<1",
]
[project.urls]
Homepage = "https://solverforge.org"
Documentation = "https://docs.solverforge.org"
Repository = "https://github.com/SolverForge/solverforge-py"
"Bug Tracker" = "https://github.com/SolverForge/solverforge-py/issues"
Changelog = "https://github.com/SolverForge/solverforge-py/releases"
[tool.maturin]
module-name = "solverforge._native"
python-source = "python"
features = ["extension-module"]
bindings = "pyo3"
auditwheel = "repair"
strip = true
[tool.pytest.ini_options]
testpaths = ["tests/python"]
pythonpath = ["python"]
[tool.ruff]
line-length = 100
target-version = "py314"
[tool.mypy]
python_version = "3.14"
strict = true
packages = ["solverforge"]