-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
111 lines (101 loc) · 2.51 KB
/
pyproject.toml
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
branch = true
source = ["qik"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"raise AssertionError",
"raise NotImplementedError",
"pass",
"pytest.mark.skip",
"@(typing\\.)?overload",
"if TYPE_CHECKING:",
]
show_missing = true
fail_under = 100
[tool.poetry]
name = "qik"
packages = [
{ include = "qik" }
]
exclude = [
"*/tests/"
]
version = "0.2.1"
description = "Tame your monorepo. Make CI fast again."
authors = ["Wes Kendall"]
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
license = "BSD-3-Clause"
readme = "README.md"
homepage = "https://github.com/Opus10/qik"
repository = "https://github.com/Opus10/qik"
documentation = "https://qik.readthedocs.io"
[tool.poetry.scripts]
qik = "qik.cli:qik_entry"
qikx = "qik.cli:qikx_entry"
[tool.poetry.dependencies]
python = ">=3.10.0,<4"
msgspec = ">=0.18.6"
xxhash = ">=3.4.1"
typing-extensions = ">=4.11.0"
rich = { version = ">=13" }
watchdog = { version = ">=4", optional = true }
grimp = { version = ">=3.4.1", optional = true }
rustworkx = { version = ">=0.15.1", optional = true }
boto3 = { version = ">=1", optional = true }
uv = { version = ">=0.4.18", optional = true }
[tool.poetry.extras]
watch = ["watchdog"]
pygraph = ["grimp", "rustworkx"]
uv = ["uv"]
dev = ["watchdog", "grimp", "rustworkx", "uv"]
s3 = ["boto3"]
[tool.poetry.dev-dependencies]
pytest = "8.3.2"
pytest-cov = "5.0.0"
pytest-dotenv = "0.5.2"
pytest-mock = "3.14.0"
moto = {extras = ["s3", "server"], version = "5.0.12"}
tox = "4.18.0"
ruff = "0.6.2"
pyright = "1.1.377"
mkdocs = "1.6.0"
black = "24.8.0"
mkdocs-material = "9.5.33"
mkdocstrings-python = "1.10.8"
pymdown-extensions = "10.11.1"
footing = "*"
setuptools = "*"
poetry-core = "*"
[tool.pytest.ini_options]
xfail_strict = true
testpaths = ["qik/tests"]
norecursedirs = ".venv"
addopts = "--cov-config pyproject.toml"
[tool.ruff]
lint.select = ["E", "F", "B", "I", "G", "C4"]
lint.ignore = ["E501"]
line-length = 99
target-version = "py310"
[tool.pyright]
exclude = [
"**/node_modules",
"**/__pycache__",
"src/experimental",
"src/typestubs",
"**/migrations/**",
"**/tests/**",
]
pythonVersion = "3.10"
typeCheckingMode = "standard"