Skip to content

Commit 071f5aa

Browse files
committed
Add missing stgit.completions package to setup.py
Also reformat __future__ imports in setup.py. Signed-off-by: Peter Grayson <[email protected]>
1 parent 0e81cc9 commit 071f5aa

File tree

1 file changed

+19
-4
lines changed

1 file changed

+19
-4
lines changed

setup.py

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
3-
from __future__ import (absolute_import, division, print_function,
4-
unicode_literals)
3+
from __future__ import (
4+
absolute_import,
5+
division,
6+
print_function,
7+
unicode_literals,
8+
)
9+
510
from distutils.core import setup
611
from glob import glob
712
import os
@@ -110,8 +115,18 @@ def __check_git_version():
110115
description='Stacked GIT',
111116
long_description='Push/pop utility on top of GIT',
112117
scripts=['stg'],
113-
packages=list(map(str, ['stgit', 'stgit.commands',
114-
'stgit.lib', 'stgit.lib.git'])),
118+
packages=list(
119+
map(
120+
str,
121+
[
122+
'stgit',
123+
'stgit.commands',
124+
'stgit.completion',
125+
'stgit.lib',
126+
'stgit.lib.git',
127+
],
128+
)
129+
),
115130
data_files=[
116131
('share/stgit/templates', glob('stgit/templates/*.tmpl')),
117132
('share/stgit/examples', glob('examples/*.tmpl')),

0 commit comments

Comments
 (0)