-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·27 lines (25 loc) · 761 Bytes
/
setup.py
File metadata and controls
executable file
·27 lines (25 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Setup script for HJKLPlugin
Created by: Rui Carmo
License: MIT (see LICENSE for details)
"""
from distutils.core import setup
import py2app
plist = {
'NSPrincipalClass':'HJKLPlugin',
'CFBundleInfoDictionaryVersion':'6.0',
'CFBundlePackageType':'APPL',
'CFBundleIdentifier':'com.taoofmac.mail.plugins.HJKLPlugin',
'CFBundleName':'HJKLPlugin',
'CFBundleSignature':'????',
'CFBundleGetInfoString':'HJKLPlugin 0.2.2',
'CFBundleVersion':'0.2.2',
'CFBundleShortVersionString':'0.2.2',
'SupportedPluginCompatibilityUUIDs': open('compatibility_UUIDs.txt').read().split(),
}
setup(
plugin = ['HJKLPlugin.py'],
options=dict(py2app=dict(extension='.mailbundle', plist=plist))
)