@@ -16,26 +16,28 @@ def package_files(directory):
1616 return paths
1717
1818
19- APP = [' bin/things-app' ]
19+ APP = [" bin/things-app" ]
2020APP_NAME = "KanbanView"
2121AUTHOR = "Alexander Willner"
22222323DESCRIPTON = "A simple read-only CLI, API and Web Service for Things 3"
2424URL = "https://kanbanview.app"
2525VERSION = "2.7.0.dev1"
26- DATA_FILES = package_files (' resources' )
26+ DATA_FILES = package_files (" resources" )
2727OPTIONS = {
28- 'argv_emulation' : False ,
29- 'iconfile' : 'resources/icon.icns' ,
30- 'plist' : {'CFBundleName' : APP_NAME ,
31- 'CFBundleDisplayName' : APP_NAME ,
32- 'CFBundleGetInfoString' : APP_NAME ,
33- 'CFBundleIdentifier' : "ws.willner.kanbanview" ,
34- 'CFBundleVersion' : VERSION ,
35- 'LSApplicationCategoryType' : "public.app-category.productivity" ,
36- 'LSMinimumSystemVersion' : "10.13.0" ,
37- 'NSHumanReadableCopyright' : 'Copyright 2020 ' + AUTHOR },
38- 'optimize' : '2'
28+ "argv_emulation" : False ,
29+ "iconfile" : "resources/icon.icns" ,
30+ "plist" : {
31+ "CFBundleName" : APP_NAME ,
32+ "CFBundleDisplayName" : APP_NAME ,
33+ "CFBundleGetInfoString" : APP_NAME ,
34+ "CFBundleIdentifier" : "ws.willner.kanbanview" ,
35+ "CFBundleVersion" : VERSION ,
36+ "LSApplicationCategoryType" : "public.app-category.productivity" ,
37+ "LSMinimumSystemVersion" : "10.13.0" ,
38+ "NSHumanReadableCopyright" : "Copyright 2020 " + AUTHOR ,
39+ },
40+ "optimize" : "2" ,
3941}
4042
4143
@@ -59,18 +61,18 @@ def package_files(directory):
5961 "Operating System :: MacOS :: MacOS X" ,
6062 "Environment :: Console" ,
6163 "Framework :: Flask" ,
62- "Natural Language :: English"
64+ "Natural Language :: English" ,
6365 ],
64- python_requires = ' >=3.6' ,
66+ python_requires = " >=3.6" ,
6567 version = VERSION ,
6668 data_files = DATA_FILES ,
67- options = {' py2app' : OPTIONS },
68- setup_requires = [' py2app' ],
69+ options = {" py2app" : OPTIONS },
70+ setup_requires = [" py2app" ],
6971 entry_points = {
70- ' console_scripts' : [
71- ' things-cli = things3.things3_cli:main' ,
72- ' things-api = things3.things3_api:main' ,
73- ' things-kanban = things3.things3_app:main'
72+ " console_scripts" : [
73+ " things-cli = things3.things3_cli:main" ,
74+ " things-api = things3.things3_api:main" ,
75+ " things-kanban = things3.things3_app:main" ,
7476 ]
75- }
77+ },
7678)
0 commit comments