publishing pipeline update + model spec

This commit is contained in:
Game_Time
2026-03-16 16:56:23 +05:00
parent baf312a02e
commit e6eeae8fa6
26 changed files with 1089 additions and 428 deletions

View File

@@ -4,11 +4,12 @@ build-backend = "setuptools.build_meta"
[project]
name = "chatmock"
version = "0.1.0"
requires-python = ">=3.13"
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"blinker==1.9.0",
"certifi==2025.8.3",
"click==8.2.1",
"flask==3.1.1",
"idna==3.10",
"itsdangerous==2.2.0",
@@ -19,6 +20,13 @@ dependencies = [
"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"
@@ -27,3 +35,6 @@ include = ["chatmock*"]
[tool.setuptools.package-data]
chatmock = ["prompt.md", "prompt_gpt5_codex.md"]
[tool.setuptools.dynamic]
version = {attr = "chatmock.version.__version__"}