You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
735 B
TOML
34 lines
735 B
TOML
[build-system]
|
|
requires = [ "setuptools",]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
requires-python = ">=3.9"
|
|
name = "myproject"
|
|
readme = "README.md"
|
|
dynamic = [ "version",]
|
|
dependencies = [ "ipython>=8.10", "jupyterlab>=3.0", "notebook", "kedro~=0.19.11",]
|
|
|
|
[project.scripts]
|
|
myproject = "myproject.__main__:main"
|
|
|
|
[tool.kedro]
|
|
package_name = "myproject"
|
|
project_name = "myproject"
|
|
kedro_init_version = "0.19.11"
|
|
tools = "['None']"
|
|
example_pipeline = "False"
|
|
source_dir = "src"
|
|
|
|
[project.entry-points."kedro.hooks"]
|
|
|
|
[tool.setuptools.dynamic.version]
|
|
attr = "myproject.__version__"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = [ "src",]
|
|
namespaces = false
|
|
|
|
[tool.kedro_telemetry]
|
|
project_id = "75d7fbdcd62f438baccd916558ab8048"
|