forked from manzt/quak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (40 loc) · 991 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "quak"
version = "0.0.0"
dependencies = [
"anywidget",
"pyarrow>=16.0.0",
"duckdb>=1.0.0"
]
readme = "README.md"
[tool.hatch.build]
only-packages = true
artifacts = ["src/quak/widget.js"]
[tool.rye]
dev-dependencies = [
"jupyterlab>=4.2.2",
"watchfiles>=0.22.0",
"vega-datasets>=0.9.0",
]
[tool.ruff.lint]
pydocstyle = { convention = "numpy" }
select = [
"E", # style errors
"W", # style warnings
"F", # flakes
"D", # pydocstyle
"D417", # Missing argument descriptions in Docstrings
"I", # isort
"UP", # pyupgrade
"C4", # flake8-comprehensions
"B", # flake8-bugbear
"A001", # flake8-builtins
"RUF", # ruff-specific rules
"TCH", # flake8-type-checking
"TID", # flake8-tidy-imports
]
[tool.ruff.lint.per-file-ignores]
"tests/*.py" = ["D", "S"]