-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (69 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
83 lines (69 loc) · 1.58 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[tool.coverage.run]
branch = true
source = ["connectors_sync_worker", "tests"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"def __str__",
"raise AssertionError",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
"if typing.TYPE_CHECKING:"
]
[tool.coverage.html]
directory = "cov_html"
[tool.coverage.xml]
directory = "coverage.xml"
[tool.commitizen]
name = "cz_customize"
[tool.commitizen.customize]
schema_pattern = "(build|ci|docs|feat!|feat|fix|perf|refactor|style|test|chore|revert|bump|helm):(\\s.*)"
[tool.poetry]
name = "connectors-sync-worker"
version = "0.0.0"
description = ""
authors = ["ilanm"]
readme = "README.md"
packages = [
{ include = "connectors_sync_worker" },
{ include = "connectors_sync_worker/py.typed"}
]
include = [
{ path = "tests", format = "sdist" }
]
[tool.poetry.dependencies]
python = "^3.12"
ai21-logging = { version = "^2.6.1", source = "ai21-infra" }
ai21-celery = { version = "^12.7.9", source = "ai21-infra" }
[tool.poetry.group.dev.dependencies]
invoke = "*"
ipython = "*"
isort = "*"
mypy = "*"
pylint = "*"
safety = "*"
pip = "*"
ruff = "*"
[tool.poetry.group.test.dependencies]
coverage = "*"
pytest = "*"
pytest-cov = "*"
pytest-mock = "*"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[[tool.poetry.source]]
name = "ai21-infra"
url = "https://us-python.pkg.dev/publishing-337912/infra-python/simple/"
priority = "supplemental"
[tool.ruff]
lint.extend-select = [
"I",
]
[build-system]
build-backend = "poetry.core.masonry.api"
requires = [
"poetry-core",
]