-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (38 loc) · 785 Bytes
/
pyproject.toml
File metadata and controls
41 lines (38 loc) · 785 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
[project]
name = "frame-search"
version = "0.3.0"
description = "Query dataframes with GitHub search syntax"
readme = "README.md"
authors = [
{ name = "Will Dean", email = "wd60622@gmail.com" }
]
requires-python = ">=3.9"
dependencies = [
"narwhals",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"ipython",
"marimo>=0.14.16",
"pandas>=2.3.1",
"polars>=1.32.1",
"pytest>=8.4.1",
"pytest-cov>=6.2.1",
"ruff>=0.12.7",
"openai>=2.6.1",
]
[tool.pytest.ini_options]
addopts = [
"-v",
"--strict-markers",
"--strict-config",
"--cov=src/frame_search",
"--cov-report=term-missing",
"--cov-report=xml",
"--no-cov-on-fail",
"--durations=50",
"--color=yes",
]