-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (46 loc) · 1.17 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (46 loc) · 1.17 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "validity-audit"
version = "0.4.0"
description = "A self-falsification protocol and audit-record toolkit for agent-produced work."
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
authors = [{ name = "klmtseng" }]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"jsonschema[format]>=4.23,<5",
]
[project.optional-dependencies]
quant = [
"numpy>=1.26,<3",
"pandas>=2.1,<3",
"scipy>=1.11,<2",
]
dev = [
"pytest>=8,<9",
"ruff>=0.6,<1",
]
[project.scripts]
validity-audit = "validity_audit.cli:main"
validity-audit-ledger = "validity_audit.ledger:main"
[tool.setuptools.packages.find]
include = ["validity_audit*"]
[tool.setuptools.package-data]
"validity_audit.schema_files" = ["*.json"]
[tool.pytest.ini_options]
addopts = "-ra"
testpaths = ["tests"]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "W"]