-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (48 loc) · 1.04 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (48 loc) · 1.04 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "triagecore"
version = "0.1.0"
description = "A local-first, evidence-bound research workbench for governing AI-assisted decisions and actions."
authors = [
{name = "Corey"}
]
requires-python = ">=3.10"
dependencies = [
"requests>=2.28.0",
"python-dotenv>=1.2.2",
"psutil>=5.9.0",
"tomli; python_version < '3.11'",
"pyyaml>=6.0",
"cryptography>=42.0.0"
]
[project.optional-dependencies]
dev = [
"pytest",
"ruff",
"mypy"
]
ui = [
"customtkinter>=5.2.0",
"Pillow>=10.0.0",
"pyshortcuts>=1.9.0"
]
mobile = [
"fastapi>=0.115.0",
"uvicorn>=0.30.0",
"pydantic>=2.0.0",
"httpx2>=0.28.0"
]
authz = [
"fido2>=2.0,<3"
]
[project.scripts]
triagecore = "triage_core.cli:main"
tc = "triage_core.tc_cli:main"
[tool.setuptools.packages.find]
include = ["triage_core*"]
exclude = ["tests*", "docs*", "scratch*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
norecursedirs = ["scratch"]