-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (54 loc) · 1.54 KB
/
pyproject.toml
File metadata and controls
64 lines (54 loc) · 1.54 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[project]
name = "chatapp"
version = "0.1.0"
description = ""
readme = "README.md"
requires-python = ">=3.9"
authors = [
{ name = "Marcelo Santos", email = "marcelo@monynha.com" }
]
dependencies = [
"fastapi==0.115.11",
"flet==0.27.5",
"langchain==0.3.21",
"langchain-community==0.3.20",
"langchain-openai==0.3.9",
"openai==1.68.0",
"python-dotenv==1.0.1",
"tenacity==9.0.0",
"uvicorn==0.34.0",
]
[dependency-groups]
dev = [
"flet[all]==0.27.5",
"pytest==8.3.5",
]
[tool.flet]
# org name in reverse domain name notation, e.g. "com.mycompany".
# Combined with project.name to build bundle ID for iOS and Android apps
org = "com.monynha"
# project display name that is used as an app title on Android and iOS home screens,
# shown in window titles and about app dialogs on desktop.
product = "chatapp"
# company name to display in about app dialogs
company = "Monynha Softwares"
# copyright text to display in about app dialogs
copyright = "Copyright (C) 2025 by Marcelo Santos"
[tool.flet.app]
path = "src"
[tool.uv]
dev-dependencies = [
"flet[all]==0.27.5",
"pytest>=8.0.0",
"pytest-cov>=5.0.0",
]
[tool.poetry]
package-mode = false
[tool.poetry.group.dev.dependencies]
flet = {extras = ["all"], version = "0.27.5"}
pytest = "^8.3.5"
pytest-cov = "^6.0.0"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src", "."]
addopts = "--cov=chat.chat_room --cov=chat.chat_app --cov=chat.application.chat_controller --cov=assistants.assistants --cov=server --cov-report=term-missing --cov-fail-under=70"