-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 754 Bytes
/
pyproject.toml
File metadata and controls
37 lines (31 loc) · 754 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
[project]
name = "chatten"
dynamic = ["version"]
description = "RAG with sources on Databricks platform"
readme = "README.md"
authors = [{ name = "renardeinside", email = "polarpersonal@gmail.com" }]
requires-python = ">=3.10"
dependencies = [
"loguru>=0.7.3",
"pydantic-settings>=2.7.1",
]
[dependency-groups]
dev = [
"build>=1.2.2.post1",
"dash[dev]>=2.18.2",
"pip>=25.0",
"ruff>=0.9.5",
"typer>=0.15.1",
"wheel>=0.45.1",
]
[tool.uv.sources]
chatten-ui = { workspace = true }
[tool.uv.workspace]
members = ["packages/*"]
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/chatten/_version.py"