Skip to content

Commit 4c01ed7

Browse files
author
Russell Stewart
committed
Moved pycompletion.sh from extras/ to pythonpy/.
1 parent d46ac24 commit 4c01ed7

4 files changed

Lines changed: 3 additions & 2 deletions

File tree

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include pythonpy/pycompletion.sh

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import sys
55

66
if os.geteuid() == 0:
7-
data_files = [('/etc/bash_completion.d', ['extras/pycompletion.sh']),]
7+
data_files = [('/etc/bash_completion.d', ['pythonpy/pycompletion.sh']),]
88
else:
99
print(
1010
'''******************************************************************************
@@ -18,7 +18,7 @@
1818
learn virtualenv and refer to 1).
1919
Installation proceeding without root access...
2020
******************************************************************************''')
21-
data_files = [('bash_completion.d', ['extras/pycompletion.sh']),]
21+
data_files = [('bash_completion.d', ['pythonpy/pycompletion.sh']),]
2222

2323
py_entry = 'py%s = pythonpy.__main__:main'
2424
pycompleter_entry = 'pycompleter%s = pythonpy.pycompleter:main'

0 commit comments

Comments
 (0)