-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (41 loc) · 1.18 KB
/
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
46
47
[project]
name = "chainlit-community"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "Mathijs de Bruin", email = "mathijs@mathijsfietst.nl" }
]
requires-python = ">=3.10"
dependencies = [
"chainlit>=2.0.4",
]
[tool.uv.workspace]
members = [
"packages/storage_clients/azure",
"packages/storage_clients/azure_blob",
"packages/storage_clients/gcs",
"packages/storage_clients/s3",
"packages/data_layers/dynamodb",
"packages/data_layers/sqlalchemy",
"packages/data_layers/literalai",
"packages/pytest"
]
[tool.uv.sources]
chainlit = { git = "https://github.com/Chainlit/chainlit.git", subdirectory = "backend/" }
[dependency-groups]
dev = [
"pyright>=1.1.390",
"pytest-asyncio>=0.24.0",
"pytest>=8.3.4",
"ruff>=0.8.3",
"pre-commit>=4.1.0",
]
[tool.pytest.ini_options]
testpaths = ["packages/**/tests"]
asyncio_mode = "auto"
[tool.ruff.lint]
select = ["E", "F", "I", "LOG", "UP", "T10", "ISC", "ICN", "LOG", "G", "PIE", "PT", "Q", "RSE", "FURB", "RUF"]
ignore = ["E712", "E501", "UP006", "UP035","PIE790", "RUF005", "RUF006", "RUF012", "ISC001"]
[tool.ruff.lint.isort]
combine-as-imports = true