-
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.
- Loading branch information
Showing
1 changed file
with
13 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,27 @@ | ||
# sprite-generator | ||
|
||
Sprite generator from a directory of images, similar to [GlueIT](https://github.com/Kavex/GlueIT). | ||
Run on OSX but can be build into other platforms | ||
Run on OSX but can be build into other platforms. You can find a build in the dist directory. | ||
|
||
Made in python | ||
|
||
|
||
## Requirement | ||
## Requirements | ||
|
||
``` | ||
python 3.7 | ||
Pillow 9.4 | ||
tkinterdnd2 0.3 | ||
pyinstaller 5.7 if you want to build | ||
``` | ||
|
||
## Build command | ||
|
||
With pyinstaller installed in your python environnement, you can build with: | ||
|
||
``` | ||
pyinstaller -F -w main.py --additional-hooks-dir=. --icon=logo/logo.png | ||
``` | ||
|
||
|
||
|