-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
67 lines (51 loc) · 1.25 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
[tool.poetry]
name = "coveo-stew"
version = "3.1.0"
description = "Opinionated python packaging and development utilities"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/coveo/stew"
authors = ["Jonathan Piché <[email protected]>"]
packages = [
{ include = "coveo_stew/**/*" },
]
[tool.poetry.dependencies]
python = ">3.9,<4"
click = "^8.1.0"
coveo-functools = "^2.0.0"
coveo-itertools = "^2.0.0"
coveo-systools = "^2.0.13"
coveo-styles = "^2.1.2"
junit-xml = "*"
packaging = "*"
setuptools = "^70.0.0"
toml = "*"
tomlkit = "*"
importlib-resources = "^6.1.1"
[tool.poetry.dev-dependencies]
black = "24.10"
coveo-testing = "^2.0.0"
flake8 = "^7.0.0"
isort = "*"
mypy = "1.12"
pytest = "*"
types-setuptools = "*"
types-toml = "*"
[tool.poetry.scripts]
stew = "coveo_stew.commands:stew"
[tool.stew]
build-without-hashes = true
[tool.stew.ci]
pytest = true
offline-build = true
black = true
[tool.stew.ci.custom-runners]
flake8 = { check-args = "--ignore=E203,E501,E701,E704,W503" }
[tool.stew.ci.custom-runners.isort]
check-args = ["--check", "--profile", "black", "."]
autofix-args = ["--profile", "black", "."]
[tool.black]
line-length = 100
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"