-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
49 lines (42 loc) · 1.06 KB
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
48
49
[project]
name = "duck_chat_api"
version = "0.2.1"
description = "DuckDuckGo Chat AI client"
authors = [
{name = "paranoik1", email = "paranoik@duck.com"}
]
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"msgspec (>=0.19.0,<0.20.0)",
"aiohttp (>=3.12.15,<4.0.0)",
"bs4 (>=0.0.2,<0.0.3)",
]
[tool.poetry.dependencies]
python = ">=3.13,<4.0"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[dependency-groups]
dev = [
"types-aiofiles (>=25.1.0.20251011,<26.0.0.0)",
"ipykernel (>=7.0.1,<8.0.0)"
]
utils = [
"xvfbwrapper (>=0.2.15,<0.3.0)",
"pytest-playwright (>=0.7.0,<0.8.0)",
"patchright (>=1.55.2,<2.0.0)"
]
api-service = [
"fastapi (>=0.119.1,<0.120.0)",
"aiofiles (>=25.1.0,<26.0.0)",
"uvicorn (>=0.38.0,<0.39.0)",
{ include-group = "utils" },
"python-multipart (>=0.0.20,<0.0.21)"
]
[tool.poetry.scripts]
duck-api-service = "duck_chat_api.service.__main__:main"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.api-service]
optional = true