forked from AzurLiu/falsiflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (78 loc) · 3.14 KB
/
Copy pathpyproject.toml
File metadata and controls
83 lines (78 loc) · 3.14 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "falsiflow"
version = "0.1.16"
description = "Evidence-gated CLI and CI action for AI eval, product-metric, and R&D claims."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Falsiflow contributors" }
]
keywords = [
"ai",
"audit",
"claim-checking",
"evidence",
"evaluation",
"product-metrics",
"provenance",
"quality-gates",
"rd",
"research",
"templates",
"workflow"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Utilities"
]
[project.urls]
Homepage = "https://github.com/AzurLiu/falsiflow"
Documentation = "https://github.com/AzurLiu/falsiflow#readme"
Architecture = "https://github.com/AzurLiu/falsiflow/blob/main/docs/falsiflow_architecture.md"
DataContract = "https://github.com/AzurLiu/falsiflow/blob/main/docs/falsiflow_data_contract.md"
AdapterProfiles = "https://github.com/AzurLiu/falsiflow/blob/main/docs/falsiflow_adapter_profiles.md"
CasebookCheck = "https://github.com/AzurLiu/falsiflow/blob/main/docs/falsiflow_casebook_check.md"
TemplateAuthoring = "https://github.com/AzurLiu/falsiflow/blob/main/docs/falsiflow_template_authoring.md"
Troubleshooting = "https://github.com/AzurLiu/falsiflow/blob/main/docs/falsiflow_troubleshooting.md"
Source = "https://github.com/AzurLiu/falsiflow"
Issues = "https://github.com/AzurLiu/falsiflow/issues"
Changelog = "https://github.com/AzurLiu/falsiflow/blob/main/CHANGELOG.md"
Demo = "https://azurliu.github.io/falsiflow/"
LivePRStory = "https://github.com/AzurLiu/falsiflow/pull/17"
BlockedRun = "https://github.com/AzurLiu/falsiflow/actions/runs/26708459093"
ReadyRun = "https://github.com/AzurLiu/falsiflow/actions/runs/26708472653"
LaunchArticle = "https://github.com/AzurLiu/falsiflow/blob/main/docs/launch_articles/stop_shipping_unverifiable_ai_eval_claims.md"
DownstreamDemo = "https://github.com/AzurLiu/falsiflow-downstream-ai-eval-demo"
DownstreamPR = "https://github.com/AzurLiu/falsiflow-downstream-ai-eval-demo/pull/1"
DownstreamBlockedRun = "https://github.com/AzurLiu/falsiflow-downstream-ai-eval-demo/actions/runs/26711652990"
DownstreamReadyRun = "https://github.com/AzurLiu/falsiflow-downstream-ai-eval-demo/actions/runs/26711669112"
Citation = "https://github.com/AzurLiu/falsiflow/blob/main/CITATION.cff"
Governance = "https://github.com/AzurLiu/falsiflow/blob/main/GOVERNANCE.md"
[project.scripts]
falsiflow = "falsiflow.cli:main"
[tool.setuptools]
packages = ["falsiflow"]
[tool.setuptools.package-data]
falsiflow = [
"assets/*.svg",
"templates/*/*.json",
"templates/*/*.csv",
"templates/*/source_files/*.csv"
]