PythonCAD/Interface/Gtk/gtkmenus.py: Update copyright year.
[pythoncad.git] / buildapp.py
blob504609417420320d511c5b2f3b140802cb575664
1 from bundlebuilder import buildapp
2 from plistlib import Plist, Dict
5 plist = Plist(
6 CFBundleDocumentTypes = [
7 Dict(
8 CFBundleTypeExtensions = ["xml", "xml.gz", "*"],
9 CFBundleTypeName = "XML File",
10 CFBundleTypeRole = "Editor",
11 NSDocumentClass = "ImageDocument",
13 Dict(
14 CFBundleTypeExtensions = ["dwg"],
15 CFBundleTypeName = "DWG File",
16 CFBundleTypeRole = "Viewer",
17 NSDocumentClass = "ImageDocument",
23 buildapp(
24 mainprogram = "PythonCad.py",
25 resources = ["PythonCAD/Interface/Cocoa/MainMenu.nib", "PythonCAD/Interface/Cocoa/ImageDocument.nib", "PythonCAD", "prefs.py"],
26 nibname = "MainMenu",
27 plist = plist,