-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (39 loc) · 1007 Bytes
/
pyproject.toml
File metadata and controls
46 lines (39 loc) · 1007 Bytes
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
[project]
name = "devops4ds"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"duckdb>=1.4.1",
"jupyter>=1.1.1",
"numpy>=2.3.4",
"palmerpenguins>=0.1.4",
"pandas>=2.3.3",
"pins>=0.9.1",
"s3fs>=2025.7.0",
"scikit-learn>=1.7.2",
"setuptools>=80.9.0",
"vetiver>=0.2.6",
]
# ========== Ruff Configuration ==========
[tool.ruff]
line-length = 88
# Target your Python version
target-version = "py312"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors (already default)
"F", # Pyflakes (already default)
"I", # isort - import sorting
"UP", # pyupgrade - modernize Python syntax
"B", # flake8-bugbear - catch common bugs
"SIM", # flake8-simplify - suggest simpler code
]
unfixable = ["F401"]
# Allow Ruff to fix issues automatically
fixable = ["ALL"]
[tool.ruff.lint.isort]
known-first-party = ["weather-agent"]
[tool.ruff.format]
quote-style = "double"