forked from mdrasmus/keepnote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
232 lines (190 loc) · 6.45 KB
/
setup.py
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
#!/usr/bin/env python
#
# setup for KeepNote
#
# use the following command to install KeepNote:
# python setup.py install
#
#=============================================================================
#
# KeepNote
# Copyright (c) 2008-2011 Matt Rasmussen
# Author: Matt Rasmussen <[email protected]>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
#
#=============================================================================
# constants
import keepnote
KEEPNOTE_VERSION = keepnote.PROGRAM_VERSION_TEXT
#=============================================================================
# python and distutils imports
from distutils.core import setup
import itertools
import os
import sys
# py2exe module (if building on windows)
try:
import py2exe
py2exe # ignore pyflake warning.
except ImportError:
pass
#=============================================================================
# helper functions
def split_path(path):
"""Splits a path into all of its directories"""
pathlist = []
while path != "":
path, tail = os.path.split(path)
pathlist.append(tail)
pathlist.reverse()
return pathlist
def get_files(path, exclude=lambda f: False):
"""Recursively get files from a directory"""
files = []
if isinstance(exclude, list):
exclude_list = exclude
def exclude(filename):
for ext in exclude_list:
if filename.endswith(ext):
return True
return False
def walk(path):
for f in os.listdir(path):
filename = os.path.join(path, f)
if exclude(filename):
# exclude certain files
continue
elif os.path.isdir(filename):
# recurse directories
walk(filename)
else:
# record all other files
files.append(filename)
walk(path)
return files
def get_file_lookup(files, prefix_old, prefix_new,
exclude=lambda f: False):
"""Create a dictionary lookup of files"""
if files is None:
files = get_files(prefix_old, exclude=exclude)
prefix_old = split_path(prefix_old)
prefix_new = split_path(prefix_new)
lookup = {}
for f in files:
path = prefix_new + split_path(f)[len(prefix_old):]
dirpath = os.path.join(*path[:-1])
lookup.setdefault(dirpath, []).append(f)
return lookup
def remove_package_dir(filename):
i = filename.index("/")
return filename[i+1:]
#=============================================================================
# resource files/data
# get resources
rc_files = get_file_lookup(None, "keepnote/rc", "rc")
image_files = get_file_lookup(None, "keepnote/images", "images")
efiles = get_file_lookup(None, "keepnote/extensions", "extensions",
exclude=[".pyc"])
freedesktop_files = [
# application icon
("share/icons/hicolor/48x48/apps",
["desktop/keepnote.png"]),
# desktop menu entry
("share/applications",
["desktop/keepnote.desktop"])]
# get data files
if "py2exe" in sys.argv:
data_files = rc_files.items() + efiles.items() + image_files.items()
package_data = {}
else:
data_files = freedesktop_files
package_data = {'keepnote': []}
for v in itertools.chain(rc_files.values(),
image_files.values(),
efiles.values()):
package_data['keepnote'].extend(map(remove_package_dir, v))
#=============================================================================
# setup
setup(
name='keepnote',
version=KEEPNOTE_VERSION,
description='A cross-platform note taking application',
long_description="""
KeepNote is a cross-platform note taking application. Its features
include:
- rich text editing
- bullet points
- fonts/colors
- hyperlinks
- inline images
- hierarchical organization for notes
- full text search
- integrated screenshot
- spell checking (via gtkspell)
- backup and restore
- HTML export
""",
author='Matt Rasmussen',
author_email='[email protected]',
url='http://keepnote.org',
download_url='http://keepnote.org/download/keepnote-%s.tar.gz' % KEEPNOTE_VERSION, # nopep8
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Win32 (MS Windows)',
'Environment :: X11 Applications',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
],
license="GPL",
packages=[
'keepnote',
'keepnote.compat',
'keepnote.gui',
'keepnote.gui.richtext',
'keepnote.notebook',
'keepnote.notebook.connection',
'keepnote.notebook.connection.fs',
'keepnote.server',
'keepnote.mswin'
],
scripts=['bin/keepnote'],
data_files=data_files,
package_data=package_data,
windows=[{
'script': 'bin/keepnote',
'icon_resources': [(1, 'keepnote/images/keepnote.ico')],
}],
options={
'py2exe': {
'packages': 'encodings',
'includes': 'cairo,pango,pangocairo,atk,gobject,win32com.shell,win32api,win32com,win32ui,win32gui', # nopep8
'dist_dir': 'dist/keepnote-%s.win' % KEEPNOTE_VERSION
},
#'sdist': {
# 'formats': 'zip',
#}
}
)
# execute post-build script
if "py2exe" in sys.argv:
execfile("pkg/win/post_py2exe.py")