-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
103 lines (86 loc) · 3.66 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
#!/usr/bin/env python
'''
Task Coach - Your friendly task manager
Copyright (C) 2004-2010 Task Coach developers <[email protected]>
Task Coach 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, either version 3 of the License, or
(at your option) any later version.
Task Coach 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, see <http://www.gnu.org/licenses/>.
'''
import platform, os
from distutils.core import setup
from taskcoachlib import meta
# Import this here so that py2exe and py2app can find the _pysyncml module:
try:
import taskcoachlib.syncml.core
executable = '/usr/bin/python2.5' # We only have pysyncml for python 2.5
except ImportError:
executable = None # No need to force a specific python version
print 'WARNING: SyncML is not supported on your platform.'
def findPackages(base):
result = [base.replace('/', '.')]
for name in os.listdir(base):
fname = os.path.join(base, name)
if os.path.isdir(fname) and \
os.path.exists(os.path.join(fname, '__init__.py')):
result.extend(findPackages(fname))
return result
setupOptions = {
'name': meta.filename,
'author': meta.author,
'author_email': meta.author_email,
'description': meta.description,
'long_description': meta.long_description,
'version': meta.version,
'url': meta.url,
'license': meta.license,
'download_url': meta.download,
'packages': findPackages('taskcoachlib') + findPackages('buildlib'),
'scripts': ['taskcoach.py'],
'classifiers': [\
'Development Status :: 3 - Alpha',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Office/Business :: Scheduling']}
if executable:
# Force a specific Python version if necessary:
setupOptions['options'] = dict(build=dict(executable=executable))
# Add available translations:
languages = sorted(meta.data.languages.keys())
for language in languages:
setupOptions['classifiers'].append('Natural Language :: %s'%language)
# Add data files for Debian-based systems:
current_dist = [dist.lower() for dist in platform.dist()]
if 'debian' in current_dist or 'ubuntu' in current_dist:
setupOptions['data_files'] = [\
('share/applications', ['build.in/fedora/taskcoach.desktop']),
('share/pixmaps', ['icons.in/taskcoach.png'])]
system = platform.system()
if system == 'Linux':
setupOptions['package_data'] = {'taskcoachlib': ['bin.in/linux/_pysyncml.so']}
elif system == 'Windows':
setupOptions['scripts'].append('taskcoach.pyw')
else:
# When packaging for MacOS, choose the right binary depending on
# the platform word size. Actually, we're always packaging on 32
# bits.
import sys, struct
if struct.calcsize('L') == 4:
sys.path.insert(0, os.path.join('taskcoachlib', 'bin.in', 'macos', 'IA32'))
sys.path.insert(0, os.path.join('extension', 'macos', 'bin-ia32'))
else:
sys.path.insert(0, os.path.join('taskcoachlib', 'bin.in', 'macos', 'IA64'))
sys.path.insert(0, os.path.join('extension', 'macos', 'bin-ia32'))
import _growl
import _growlImage
import _powermgt
if __name__ == '__main__':
setup(**setupOptions)