-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 937 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (27 loc) · 937 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "toulmin-argument"
version = "1.0.0"
description = "Dependency-free Toulmin argumentation primitives for attaching structured, auditable reasoning to any automated decision."
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
authors = [{ name = "Tarun Bhasin" }]
keywords = ["toulmin", "explainability", "reasoning", "audit", "argumentation", "xai"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries",
"Typing :: Typed",
]
dependencies = []
[project.optional-dependencies]
dev = ["pytest>=7"]
[project.urls]
Documentation = "./docs/API.md"
[tool.hatch.build.targets.wheel]
packages = ["src/toulmin_argument"]