3 # usage: use the Makefile instead of invoking this script directly.
4 # pylint: disable=import-error,no-name-in-module
5 from __future__
import absolute_import
, division
, unicode_literals
7 from distutils
.command
import build_scripts
8 from distutils
.core
import setup
13 from extras
import cmdclass
15 # Hack: prevent python2's ascii default encoding from breaking inside
16 # distutils when installing from utf-8 paths.
17 if sys
.version_info
[0] < 3:
18 # pylint: disable=reload-builtin,undefined-variable
20 # pylint: disable=no-member
21 sys
.setdefaultencoding('utf-8')
23 # Prevent distutils from changing "#!/usr/bin/env python" when
24 # --use-env-python is specified.
26 sys
.argv
.remove('--use-env-python')
29 use_env_python
= False
31 if sys
.version_info
[0] < 3:
32 # Python2 accepts the r'' unicode literal.
33 pattern
= re
.compile(r
'^should not match$')
35 # Python3 reads files as bytes and requires that the regex pattern is
37 pattern
= re
.compile(b
'^should not match$')
38 build_scripts
.first_line_re
= pattern
40 # Disable installation of the private cola package by passing --no-private-libs or
41 # by setting GIT_COLA_NO_PRIVATE_LIBS=1 in th environment.
43 sys
.argv
.remove('--no-private-libs')
46 private_libs
= not os
.getenv('GIT_COLA_NO_PRIVATE_LIBS', '')
48 # Disable vendoring of qtpy and friends by passing --no-vendor-libs to setup.py or
49 # by setting GIT_COLA_NO_VENDOR_LIBS=1 in the environment.
51 sys
.argv
.remove('--no-vendor-libs')
54 vendor_libs
= not os
.getenv('GIT_COLA_NO_VENDOR_LIBS', '')
56 here
= os
.path
.dirname(__file__
)
57 version
= os
.path
.join(here
, 'cola', '_version.py')
59 exec(open(version
).read(), scope
) # pylint: disable=exec-used
60 version
= scope
['VERSION']
64 """Runs distutils.setup()"""
67 'bin/git-cola-sequence-editor',
71 if sys
.platform
== 'win32':
72 scripts
.append('contrib/win32/cola')
74 packages
= [str('cola'), str('cola.models'), str('cola.widgets')]
79 description
='The highly caffeinated git GUI',
80 long_description
='A sleek and powerful git GUI',
82 author
='David Aguilar',
83 author_email
='davvid@gmail.com',
84 url
='https://git-cola.github.io/',
89 data_files
=_data_files(),
94 """Return the list of data files"""
96 _app_path('share/git-cola/bin', '*'),
97 _app_path('share/git-cola/icons', '*.png'),
98 _app_path('share/git-cola/icons', '*.svg'),
99 _app_path('share/git-cola/icons/dark', '*.png'),
100 _app_path('share/git-cola/icons/dark', '*.svg'),
101 _app_path('share/metainfo', '*.xml'),
102 _app_path('share/applications', '*.desktop'),
103 _app_path('share/doc/git-cola', '*.rst'),
104 _app_path('share/doc/git-cola', '*.html'),
109 [_package('cola'), _package('cola.models'), _package('cola.widgets')]
113 data
.extend([_package('qtpy'), _package('qtpy._patch')])
117 _app_path(localedir
, 'git-cola.mo')
118 for localedir
in glob('share/locale/*/LC_MESSAGES')
124 def _package(package
, subdirs
=None):
125 """Collect python files for a given python "package" name"""
126 dirs
= package
.split('.')
127 app_dir
= _lib_path(*dirs
)
129 dirs
= list(subdirs
) + dirs
130 src_dir
= os
.path
.join(*dirs
)
131 return (app_dir
, glob(os
.path
.join(src_dir
, '*.py')))
134 def _lib_path(*dirs
):
135 return os
.path
.join('share', 'git-cola', 'lib', *dirs
)
138 def _app_path(dirname
, entry
):
139 """Construct (dirname, [glob-expanded-entries relative to dirname])"""
140 return (dirname
, glob(os
.path
.join(dirname
, entry
)))
143 if __name__
== '__main__':