File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed
Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 88build:
99 uv build
1010
11+ dev:
12+ uv run python -m {{ project_package }}
13+
14+ deploy:
15+ uv run nuitka src/{{ project_package }}/__main__.py \
16+ --standalone \
17+ --onefile \
18+ --output-filename={{ project_name }} \
19+ --output-dir=dist \
20+ --follow-imports \
21+ --include-module=wx._xml
22+ --windows-console-mode=disable \
23+ --windows-icon-from-ico=icons/app_icon.ico
24+
1125lint:
1226 uv run pylint src/ tests/
1327
Original file line number Diff line number Diff line change @@ -26,13 +26,15 @@ changelog = "https://github.com/{{ vcs_github_path }}/blob/main/CHANGELOG.md"
2626[dependency-groups]
2727dev = [
2828 "chance>=0.110",
29+ "nuitka>=2.7.12",
2930 "pre-commit>=4.3.0",
3031 "pylint>=3.3.8",
3132 "pytest>=8.4.1",
3233 "pytest-cov>=6.2.1",
3334 {% if with_tox %}
3435 "tox>=4.28.4",
3536 {% endif %}
37+ "zstandard>=0.24.0",
3638]
3739
3840[build-system]
You can’t perform that action at this time.
0 commit comments