-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
66 lines (57 loc) · 1.44 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
[build-system]
# Minimum requirements for the build system to execute.
requires = ["setuptools>=65.5.1"] # PEP 518 specifications
build-backend = "setuptools.build_meta"
[project]
name = "Kedro-Universal-Catalog"
authors = [
{name = "Brandon Meek"}
]
description = "Kedro-Universal-Catalog lets you build a central Kedro Data Catalog"
requires-python = ">=3.8"
keywords = [
"kedro",
"data science",
"data engineering",
"data pipelines"
]
dynamic = ["readme", "version"]
[project.scripts]
kedro-catalog = "universal_catalog.cli.plugin:cli"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
readme = {file = "README.md", content-type = "text/markdown"}
version = {attr = "universal_catalog.__version__"}
[tool.setuptools.packages.find]
include = ["universal_catalog*"]
[project.optional-dependencies]
test = [
"requests-mock~=1.12.1",
"pandas~=2.0.3"
]
[tool.ruff.format]
exclude = ["**/templates"]
docstring-code-format = true
[tool.pytest.ini_options]
addopts="""
--cov-context test \
--cov-config pyproject.toml \
--cov-report xml:coverage.xml \
--cov-report term-missing \
--cov universal_catalog \
--cov tests \
--ignore universal_catalog/templates \
--no-cov-on-fail \
-ra \
-W ignore"""
testpaths = [
"tests"
]
[tool.coverage.report]
omit = [
"universal_catalog/templates/*",
"tests/*"
]
exclude_lines = ["pragma: no cover", "raise NotImplementedError"]
[tool.ruff.lint.isort]
known-first-party = ["universal_catalog"]