Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
wendelin.core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
Kirill Smelkov
wendelin.core
Commits
4870e511
Commit
4870e511
authored
Apr 20, 2020
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
8403f2ef
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
setup.py
setup.py
+7
-1
No files found.
setup.py
View file @
4870e511
...
...
@@ -22,6 +22,7 @@ from setuptools_dso import Extension
from
setuptools
import
Command
,
find_packages
from
setuptools.command.build_py
import
build_py
as
_build_py
from
pkg_resources
import
working_set
,
EntryPoint
from
distutils.file_util
import
copy_file
from
distutils.errors
import
DistutilsExecError
from
subprocess
import
Popen
,
PIPE
...
...
@@ -182,7 +183,12 @@ class build_ext(_build_ext):
def
run
(
self
):
runmake
(
'all'
)
return
_build_ext
.
run
(
self
)
_build_ext
.
run
(
self
)
# copy wcfs/wcfs built from wcfs.go by make into build/lib.linux-x86_64-2.7/...
copy_file
(
'wcfs/wcfs'
,
os
.
path
.
join
(
self
.
build_lib
,
'wendelin/wcfs/wcfs'
),
verbose
=
self
.
verbose
,
dry_run
=
self
.
dry_run
)
...
...
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