-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 965 Bytes
/
Copy pathpyproject.toml
File metadata and controls
50 lines (44 loc) · 965 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
38
39
40
41
42
43
44
45
46
47
48
49
50
[project]
name = "CPA-Codex-Manager"
dynamic = ["version"]
description = "CPA-Codex-Manager"
requires-python = ">=3.10"
dependencies = [
"aiohttp>=3.12.0",
"curl-cffi>=0.14.0",
"fastapi>=0.100.0",
"uvicorn>=0.23.0",
"pywebview>=5.1",
"jinja2>=3.1.0",
"python-multipart>=0.0.6",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"requests>=2.32.5",
"sqlalchemy>=2.0.0",
"aiosqlite>=0.19.0",
"psycopg[binary]>=3.1.18",
"websockets>=16.0",
"path>=17.1.1",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"httpx>=0.24.0",
]
payment = [
"playwright>=1.40.0",
]
[project.scripts]
CPA-Codex-Manager = "webui:main"
CPA-Codex-Manager-Desktop = "desktop:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/app_meta.py"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[dependency-groups]
dev = [
"pyinstaller>=6.19.0",
]