-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 994 Bytes
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 994 Bytes
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
[build-system]
requires = ["setuptools>=69.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "openclaw-predicate-provider"
version = "0.1.0"
description = "OpenClaw provider for deterministic Predicate Authority enforcement."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT OR Apache-2.0" }
authors = [{ name = "Predicate Systems" }]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Typing :: Typed",
]
dependencies = [
"pydantic>=2.7.0",
"httpx>=0.27.0",
]
[project.scripts]
openclaw-predicate-provider = "openclaw_predicate_provider.cli:main"
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
]
[tool.setuptools.packages.find]
where = ["src"]
include = ["openclaw_predicate_provider*"]
[tool.setuptools.package-data]
openclaw_predicate_provider = ["py.typed"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]