-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (31 loc) · 903 Bytes
/
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
[build-system]
requires = [ "setuptools",]
build-backend = "setuptools.build_meta"
[project]
name = "kedro_plotly_html"
readme = "README.md"
dynamic = [ "dependencies", "version",]
[project.scripts]
kedro-plotly-html = "kedro_plotly_html.__main__:main"
[tool.kedro]
package_name = "kedro_plotly_html"
project_name = "Kedro Plotly HTML"
kedro_init_version = "0.19.6"
tools = [ "Linting", "Custom Logging", "Data Structure", "Kedro Viz",]
example_pipeline = "False"
source_dir = "src"
[tool.ruff]
line-length = 88
show-fixes = true
select = [ "F", "W", "E", "I", "UP", "PL", "T201",]
ignore = [ "E501",]
[project.entry-points."kedro.hooks"]
[tool.ruff.format]
docstring-code-format = true
[tool.setuptools.dynamic.dependencies]
file = "requirements.txt"
[tool.setuptools.dynamic.version]
attr = "kedro_plotly_html.__version__"
[tool.setuptools.packages.find]
where = [ "src",]
namespaces = false