This repository was archived by the owner on Dec 2, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (65 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
73 lines (65 loc) · 1.31 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
[project]
name = "data-science"
version = "0.1.0"
description = "A collection of data science blog posts"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"ipykernel>=6.29.5",
"marimo>=0.13.7",
"markdownify>=1.1.0",
"nbformat>=5.10.4",
"ollama>=0.5.1",
"pandas>=2.3.0",
"pgvector>=0.4.1",
"pre-commit>=4.2.0",
"psycopg2>=2.9.10",
"pytest>=8.4.1",
"requests>=2.32.4",
"sqlalchemy>=2.0.41",
]
[dependency-groups]
dev = [
"nbstripout>=0.8.1",
"ruff>=0.12.8",
]
[tool.ruff]
# Exclude a variety of commonly ignored directories.
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
]
# Extend exclusions to skip Jupyter notebooks
extend-exclude = ["*.ipynb"]
# Same as Black.
line-length = 88
[tool.ruff.lint]
ignore = ["E501", "F841", "B018", "E101", "W191", "W291"]
select = ["B","C","E","F","W","B9", "I", "Q"]
[tool.ruff.format]
quote-style = "double"
indent-style = "tab"
skip-magic-trailing-comma = false
[tool.ruff.lint.mccabe]
max-complexity = 10
[tool.marimo.runtime]
dotenv = [".env"]