-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 803 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 803 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "redteamkit"
version = "0.1.0"
description = "Adversarial hypothesis testing framework for strategic decision-making"
readme = {text = "Adversarial hypothesis testing framework", content-type = "text/plain"}
license = "MIT"
authors = [{name = "TechKnowMad Labs", email = "admin@techknowmad.ai"}]
requires-python = ">=3.12"
dependencies = [
"pydantic>=2.0",
"httpx>=0.27",
"pyyaml>=6.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"pytest-asyncio>=0.23",
"hypothesis>=6.0",
"ruff>=0.3",
]
[tool.ruff]
target-version = "py312"
line-length = 99
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W"]
[tool.pytest.ini_options]
testpaths = ["tests"]