-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update .gitignore and requirements; add goreleaser configuration
- Loading branch information
1 parent
5edbfd5
commit c12155e
Showing
3 changed files
with
234 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
project_name: protodesk | ||
|
||
# Build configuration | ||
builds: | ||
- id: protodesk_build | ||
main: ./app.py | ||
binary: protodesk | ||
goos: | ||
- windows | ||
- linux | ||
- darwin | ||
goarch: | ||
- amd64 | ||
- arm64 | ||
|
||
# Archives (e.g., zip or tar.gz packages) | ||
archives: | ||
- format: zip | ||
files: | ||
- LICENSE | ||
- README.md | ||
|
||
# Release information | ||
release: | ||
github: | ||
owner: ###### | ||
name: protodesk | ||
|
||
# Artifact customization | ||
checksum: | ||
name_template: '{{ .ProjectName }}_checksums.txt' | ||
|
||
# Windows installer (optional, using external tools) | ||
dockers: | ||
- image_templates: | ||
- '######/{{ .ProjectName }}:{{ .Version }}' | ||
|
||
# Snapcraft for Linux | ||
snapcraft: | ||
name: protodesk | ||
summary: 'A simple tool for prototyping desktop applications.' | ||
description: | | ||
Longer description of Protodesk. | ||
# Custom build hooks | ||
before: | ||
hooks: | ||
- go mod tidy | ||
after: | ||
hooks: | ||
- echo "Build completed!" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,16 @@ | ||
altgraph==0.17.4 | ||
flake8==7.1.1 | ||
mccabe==0.7.0 | ||
Nuitka==2.5 | ||
ordered-set==4.1.0 | ||
packaging==24.2 | ||
pycodestyle==2.12.1 | ||
pyflakes==3.2.0 | ||
pyinstaller==6.11.1 | ||
pyinstaller-hooks-contrib==2024.10 | ||
PySide6==6.8.0.2 | ||
PySide6_Addons==6.8.0.2 | ||
PySide6_Essentials==6.8.0.2 | ||
setuptools==75.6.0 | ||
shiboken6==6.8.0.2 | ||
zstandard==0.23.0 |