-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (32 loc) · 1.15 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
[build-system]
requires = [ "setuptools",]
build-backend = "setuptools.build_meta"
[project]
name = "mda_project"
readme = "README.md"
dynamic = [ "dependencies", "version",]
[project.scripts]
mda-project = "mda_project.__main__:main"
[project.optional-dependencies]
docs = [ "docutils<0.18.0", "sphinx~=3.4.3", "sphinx_rtd_theme==0.5.1", "nbsphinx==0.8.1", "sphinx-autodoc-typehints==1.11.1", "sphinx_copybutton==0.3.1", "ipykernel>=5.3, <7.0", "Jinja2<3.1.0", "myst-parser~=0.17.2",]
[tool.kedro]
package_name = "mda_project"
project_name = "MDA-project"
kedro_init_version = "0.19.4"
tools = [ "Testing", "Custom Logging", "Documentation", "PySpark", "Kedro Viz",]
example_pipeline = "True"
source_dir = "src"
[project.entry-points."kedro.hooks"]
[tool.pytest.ini_options]
addopts = "--cov-report term-missing --cov src/mda_project -ra"
[tool.coverage.report]
fail_under = 0
show_missing = true
exclude_lines = [ "pragma: no cover", "raise NotImplementedError",]
[tool.setuptools.dynamic.dependencies]
file = "requirements.txt"
[tool.setuptools.dynamic.version]
attr = "mda_project.__version__"
[tool.setuptools.packages.find]
where = [ "src",]
namespaces = false