-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (52 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
59 lines (52 loc) · 1.38 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "oss-crs"
version = "0.1.0"
description = "Cyber Reasoning System (CRS) build and run tools for bug finding and fixing"
requires-python = ">=3.10"
license = "MIT"
authors = [
{name = "Team Atlanta"}
]
dependencies = [
"requests>=2.33.0",
"PyYAML>=6.0.3",
"Jinja2>=3.1.6",
"python-dotenv>=1.2.2",
"docker>=7.1.0",
"gitpython>=3.1.50",
"pydantic>=2.12.5",
"rich>=13.7.0",
"questionary>=2.1.1",
]
[project.scripts]
oss-crs = "oss_crs.src.cli.crs_compose:main"
verify = "scripts.verify:main"
[tool.setuptools.packages.find]
include = ["oss_crs*", "scripts"]
[tool.setuptools.package-data]
"oss_crs.src.templates" = ["*.j2", "*.py"]
[dependency-groups]
dev = [
"ruff>=0.14.5",
"pyright>=1.1.407",
"pytest>=9.0.3",
"pytest-cov>=4.0.0",
"watchdog>=4.0.0",
"ty>=0.0.4",
"fastapi>=0.115.0",
"uvicorn>=0.34.0",
"python-multipart>=0.0.27",
"httpx>=0.27.0",
]
[tool.ty.src]
include = []
[tool.pytest.ini_options]
markers = [
"integration: marks tests as integration tests (require network access, may be slow)",
"docker: marks tests that require Docker daemon (excluded from unit test runs)",
"smoke: marks tests as smoke tests",
"cgroup_parent_required: marks tests that require cgroup-parent support",
]