-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 935 Bytes
/
pyproject.toml
File metadata and controls
46 lines (42 loc) · 935 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
37
38
39
40
41
42
43
44
45
46
[project]
name = "omniskill"
version = "0.2.0"
description = "A high-performance Python application template"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.12"
dependencies = [
"click>=8.3.1",
"msgspec>=0.20.0",
"rank-bm25>=0.2.2",
"structlog>=25.5.0",
]
[project.scripts]
omniskill = "omniskill.cli:main"
[build-system]
requires = ["uv_build>=0.10.7,<0.11.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"pytest>=9.0.1",
"pytest-cov>=7.1.0",
"pytest-asyncio>=1.3.0",
"pytest-benchmark>=5.2.3",
"ruff>=0.15.5",
"ty>=0.0.26",
"behave>=1.3.3",
"hypothesis>=6.151.9",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
addopts = [
"-ra",
"--strict-markers",
"--strict-config",
]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"benchmark: marks benchmark tests",
]
asyncio_mode = "auto"