-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (51 loc) · 1.49 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
[tool.poetry]
name = "project"
version = "0.1.0"
description = ""
authors = ["KKobuszewski <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
numpy = "1.26.4"
pandas = "2.1.4"
kedro = "0.19.4"
kedro-viz = "^9.0.0"
kedro-datasets = {extras = ["pandas-csvdataset", "pandas-parquetdataset"], version = "^3.0.0"}
selenium = "4.16.0"
emd = "^0.7.0"
copent = "^0.5.1"
statsmodels = "^0.14.2"
plotly = "^5.22.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
#[build-system]
#requires = [ "setuptools",]
#build-backend = "setuptools.build_meta"
[project]
name = "aluminium_prediction"
readme = "README.md"
dynamic = [ "dependencies", "version",]
[project.scripts]
aluminium-prediction = "aluminium_prediction.__main__:main"
[tool.kedro]
package_name = "aluminium_prediction"
project_name = "aluminium-prediction"
kedro_init_version = "0.19.4"
tools = [ "Testing", "Custom Logging", "Data Structure", "Kedro Viz",]
example_pipeline = "True"
source_dir = "src"
[project.entry-points."kedro.hooks"]
[tool.pytest.ini_options]
addopts = "--cov-report term-missing --cov src/aluminium_prediction -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 = "aluminium_prediction.__version__"
[tool.setuptools.packages.find]
where = [ "src",]
namespaces = false