-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
43 lines (37 loc) · 954 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
[project]
name = "yellowhammer"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
dynamic = ["version"]
dependencies = [
"datalab-api>=0.2.4",
"jupyter-ai>=2.24.1",
"jupyterlab>=4.2.5",
"langchain>=0.2.16",
"langchain-anthropic>=0.1.23",
"langchain-openai>=0.1.25",
"notebook>=7.2.2",
"yellowhammer",
]
[project.urls]
homepage = "https://github.com/datalab-org/yellowhammer"
repository = "https://github.com/datalab-org/yellowhammer"
documentation = "https://github.com/datalab-org/yellowhammer"
[build-system]
requires = ["setuptools >= 70", "setuptools_scm ~= 8.1", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
fallback_version = "0.1.0"
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.mypy]
ignore_missing_imports = true
follow_imports = "skip"
[tool.uv]
dev-dependencies = [
"ipykernel>=6.29.5",
"pre-commit>=4.0.0",
"pytest>=8.3.3",
]