-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (80 loc) · 1.82 KB
/
pyproject.toml
File metadata and controls
94 lines (80 loc) · 1.82 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[build-system]
requires = ["setuptools>=65.0", "wheel"]
build-backend = "setuptools.build_meta"
# =========================
# Project metadata (PEP 621)
# =========================
[project]
name = "income-kedro"
version = "0.1.0"
description = "Income prediction case using Kedro pipelines and machine learning"
readme = "README.md"
requires-python = ">=3.9"
authors = [
{ name = "Felipe Castro", email = "felmateos@alumni.usp.br" }
]
keywords = [
"data-science",
"machine-learning",
"kedro",
"classification",
"income-prediction"
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research"
]
# =========================
# Runtime dependencies
# =========================
dependencies = [
"kedro>=0.19.0",
"kedro-datasets>=3.0",
"pandas>=2.0",
"scikit-learn>=1.3"
]
# =========================
# Optional dependencies
# =========================
[project.optional-dependencies]
dev = [
"pytest>=7.4",
"black>=23.9",
"isort>=5.12",
"flake8>=6.1",
"ipykernel>=6.25"
]
viz = [
"matplotlib>=3.8",
"seaborn>=0.13"
]
catboost = [
"catboost>=1.2"
]
# =========================
# Entry points (CLI)
# =========================
[project.scripts]
income-kedro = "income_kedro.__main__:main"
# =========================
# Tooling configuration
# =========================
[tool.black]
line-length = 88
target-version = ["py39"]
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-ra -q"
testpaths = ["tests"]
# =========================
# Kedro-specific settings
# =========================
[tool.kedro]
package_name = "income_kedro"
project_name = "Income kedro Case"
kedro_init_version = "1.1.1"
[tool.kedro_telemetry]
project_id = "137db23d859b42b18d09131c663ef46c"