Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
setuptools
Commits
e81800c1
Commit
e81800c1
authored
Jan 06, 2014
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove excess whitespace
--HG-- extra : rebase_source : 4d1b9f2354d8966b2bd8c375662e5f29817adbb3
parent
7de6148d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
25 deletions
+4
-25
setuptools/command/install.py
setuptools/command/install.py
+4
-25
No files found.
setuptools/command/install.py
View file @
e81800c1
import
setuptools
,
sys
,
glob
import
setuptools
import
sys
import
glob
from
distutils.command.install
import
install
as
_install
from
distutils.errors
import
DistutilsArgError
...
...
@@ -15,7 +17,7 @@ class install(_install):
]
new_commands
=
[
(
'install_egg_info'
,
lambda
self
:
True
),
(
'install_scripts'
,
lambda
self
:
True
),
(
'install_scripts'
,
lambda
self
:
True
),
]
_nc
=
dict
(
new_commands
)
...
...
@@ -46,7 +48,6 @@ class install(_install):
self
.
path_file
=
None
self
.
extra_dirs
=
''
def
run
(
self
):
# Explicit request for old-style install? Just do it
if
self
.
old_and_unmanageable
or
self
.
single_version_externally_managed
:
...
...
@@ -72,11 +73,6 @@ class install(_install):
else
:
self
.
do_egg_install
()
def
do_egg_install
(
self
):
easy_install
=
self
.
distribution
.
get_command_class
(
'easy_install'
)
...
...
@@ -105,20 +101,3 @@ class install(_install):
install
.
sub_commands
=
[
cmd
for
cmd
in
_install
.
sub_commands
if
cmd
[
0
]
not
in
install
.
_nc
]
+
install
.
new_commands
#
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment