File tree Expand file tree Collapse file tree 5 files changed +32
-1
lines changed Expand file tree Collapse file tree 5 files changed +32
-1
lines changed Original file line number Diff line number Diff line change 11kanban.html
22.DS_Store
3-
3+ dist
4+ build
Original file line number Diff line number Diff line change 1010 @echo " Some available commands:"
1111 @echo " * run - Run code."
1212 @echo " * open - Open Kanban Board."
13+ @echo " * app - Create KanbanView App."
1314 @echo " * test - Run unit tests and test coverage."
1415 @echo " * doc - Document code (pydoc)."
1516 @echo " * clean - Cleanup (e.g. pyc files)."
3031# @coverage report
3132 @echo "not implemented"
3233
34+ .PHONY : app
35+ app :
36+ @$(PYTHON ) setup.py py2app --iconfile resources/icon.icns
37+ @open dist
38+
3339.PHONY : doc
3440doc :
3541# @$(PYDOC) src.hello
4248.PHONY : clean
4349clean :
4450 @rm -f $(DEST )
51+ @rm -rf build dist
4552
4653auto-style :
4754 @type autopep8 > /dev/null 2>&1 || (echo " Run 'pip install autopep8' first." >&2 ; exit 1)
Original file line number Diff line number Diff line change 1+ """
2+ This is a setup.py script generated by py2applet
3+
4+ Usage:
5+ python setup.py py2app
6+ """
7+
8+ from setuptools import setup
9+
10+ APP = ['src/things3_to_kanban.py' ]
11+ DATA_FILES = ['resources' ]
12+ OPTIONS = {
13+ 'iconfile' :'resources/icon.icns' ,
14+ 'plist' : {'CFBundleShortVersionString' :'1.0.0' ,}
15+ }
16+
17+ setup (
18+ app = APP ,
19+ name = 'KanbanView' ,
20+ data_files = DATA_FILES ,
21+ options = {'py2app' : OPTIONS },
22+ setup_requires = ['py2app' ],
23+ )
You can’t perform that action at this time.
0 commit comments