-
Notifications
You must be signed in to change notification settings - Fork 191
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 860 Bytes
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 860 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "chatmock"
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"blinker==1.9.0",
"certifi==2025.8.3",
"flask==3.1.1",
"flask-sock==0.7.0",
"idna==3.10",
"itsdangerous==2.2.0",
"jinja2==3.1.6",
"markupsafe==3.0.2",
"requests==2.32.5",
"urllib3==2.5.0",
"websockets==15.0.1",
"werkzeug==3.1.3",
]
[project.optional-dependencies]
gui = [
"Pillow==11.3.0",
"PyInstaller==6.16.0",
"PySide6==6.9.2",
]
[project.scripts]
chatmock = "chatmock.cli:main"
[tool.setuptools.packages.find]
include = ["chatmock*"]
[tool.setuptools.package-data]
chatmock = ["prompt.md", "prompt_gpt5_codex.md"]
[tool.setuptools.dynamic]
version = {attr = "chatmock.version.__version__"}