-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
86 lines (78 loc) · 1.49 KB
/
pyproject.toml
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[project]
name = "quack2tex"
version = "1.0.7"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"aiosqlite>=0.20.0",
"google-generativeai>=0.8.3",
"markdown>=3.7",
"matplotlib>=3.9.2",
"mss>=9.0.2",
"ollama>=0.3.3",
"openai>=1.52.0",
"pillow>=11.0.0",
"pydantic>=2.9.2",
"pydantic-settings>=2.6.0",
"python-dotenv>=1.0.1",
"scipy>=1.14.1",
"sqlalchemy>=2.0.36",
"tenacity>=9.0.0",
"typer>=0.12.5",
"pyqt6>=6.8.0",
"pyqt6-webengine>=6.8.0",
"modihub",
"pyqt6-qt6>=6.8.1",
]
[project.scripts]
quack2tex = "quack2tex.cli:run"
[project.optional-dependencies]
dev = [
"pyside6>=6.8.2.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv.sources]
modihub = { path = "../modihub" , editable = true }
[tool.hatch.build]
exclude = [
"tests/",
"docs/",
"examples/",
"assets/",
"keys/",
".git/",
".github/",
"scripts/",
"configs/",
"README.md",
".env",
"config.json",
"*/**/.sh",
"Makefile",
"cloudbuild.yaml",
"*/**/Dockerfile",
"Dockerfile",
"requirements.txt",
"docker/",
"*.sh",
"*.yml",
"analysis/",
"data/",
"images/",
"ui/",
"web.ps1",
".vscode/",
".idea/",
".gitignore",
".gitattributes",
".gitmodules",
".gitkeep",
".gitlab-ci.yml",
".gitlab/",
".gitlab-ci/",
".gitlab-ci.yml",
".python-version"
]