File tree Expand file tree Collapse file tree 1 file changed +19
-4
lines changed Expand file tree Collapse file tree 1 file changed +19
-4
lines changed Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
2
# -*- 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
+
5
10
from distutils .core import setup
6
11
from glob import glob
7
12
import os
@@ -110,8 +115,18 @@ def __check_git_version():
110
115
description = 'Stacked GIT' ,
111
116
long_description = 'Push/pop utility on top of GIT' ,
112
117
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
+ ),
115
130
data_files = [
116
131
('share/stgit/templates' , glob ('stgit/templates/*.tmpl' )),
117
132
('share/stgit/examples' , glob ('examples/*.tmpl' )),
You can’t perform that action at this time.
0 commit comments