File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed
Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change 1+ [build-system ]
2+ requires = [" setuptools>=68" , " wheel" ]
3+ build-backend = " setuptools.build_meta"
4+
5+ [project ]
6+ name = " diabetes-dashboard"
7+ version = " 0.1.0"
8+ description = " Flask dashboard for Diabetes Risk Prediction"
9+ readme = " README.md"
10+ requires-python = " >=3.10"
11+
12+ [tool .black ]
13+ line-length = 100
14+ target-version = [" py310" , " py311" , " py312" , " py313" ]
15+
16+ [tool .isort ]
17+ profile = " black"
18+ line_length = 100
19+ src_paths = [" src" , " tests" ]
20+
21+ [tool .ruff ]
22+ line-length = 100
23+ target-version = " py310"
24+ select = [" E" , " F" , " W" , " I" ]
25+ # We keep imports at top, so no need to ignore E402 now.
26+ exclude = [
27+ " .venv" ,
28+ " venv" ,
29+ " build" ,
30+ " dist" ,
31+ ]
32+
33+ [tool .pytest .ini_options ]
34+ testpaths = [" tests" ]
35+ pythonpath = [" src" ]
36+ addopts = " -q"
37+ filterwarnings = [
38+ " ignore::FutureWarning:sklearn.*" ,
39+ " ignore:.*errors='ignore'.*:FutureWarning" ,
40+ ]
You can’t perform that action at this time.
0 commit comments