File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11from cx_Freeze import setup , Executable
2- import platform
2+ import config
33
44includefiles = []
55
2828"""
2929python setup.py bdist_mac
3030bdist_dmg
31- codesign --deep --force --verify --verbose --sign "Milonga" milonga-1.0 .app
31+ codesign --deep --force --verify --verbose --sign "Milonga" build/ milonga-1.1 .app
3232"""
3333
3434plist_items = [
4040
4141setup (
4242 name = "Milonga" ,
43- version = "1.0" ,
43+ version = config . get_version () ,
4444 description = 'Milonga DJ App' ,
4545 author = 'Paweł Wąsowicz' ,
4646 options = {'bdist_dmg' :{'show_icon_preview' :True },
Original file line number Diff line number Diff line change 11import sys
22from cx_Freeze import setup , Executable
3+ import config
34
45includefiles = [
56 ('icons/delete.png' , 'icons/delete.png' ),
6566# Konfiguracja `setup`
6667setup (
6768 name = "Milonga" ,
68- version = "1.0" ,
69+ version = config . get_version () ,
6970 description = 'Milonga DJ App' ,
7071 author = 'Paweł Wąsowicz' ,
7172 options = {
You can’t perform that action at this time.
0 commit comments