Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Boxiang Sun
cython
Commits
b517d0c1
Commit
b517d0c1
authored
10 years ago
by
Lisandro Dalcin
Browse files
Options
Download
Email Patches
Plain Diff
Update setupegg.py to Python 3
parent
b543eab8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
setupegg.py
setupegg.py
+2
-1
No files found.
setupegg.py
View file @
b517d0c1
#!/usr/bin/env python
"""Wrapper to run setup.py using setuptools."""
import
setuptools
execfile
(
'setup.py'
)
with
open
(
'setup.py'
,
'rb'
)
as
f
:
exec
(
compile
(
f
.
read
(),
'setup.py'
,
'exec'
))
This diff is collapsed.
Click to expand it.
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