Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Basthon
Basthon Kernel
Commits
f8fbbd10
Commit
f8fbbd10
authored
Jan 29, 2021
by
Romain Casati
Browse files
Fix
#3
.
parent
08003f7e
Changes
2
Hide whitespace changes
Inline
Side-by-side
setup/Makefile
View file @
f8fbbd10
...
...
@@ -7,6 +7,6 @@ publish:
clean
:
for
d
in
$$
(
find ../src/
-mindepth
1
-maxdepth
1
-type
d
)
;
do
cd
$$
d
;
make clean
;
cd
-
;
done
rm
-rf
basthon_kernel.egg-info/ basthon-kernel/data/
*
build/ dist/
rm
-rf
basthon_kernel.egg-info/ basthon-kernel/data/ build/ dist/
.PHONY
:
publish build clean
setup/setup.py
View file @
f8fbbd10
...
...
@@ -30,8 +30,9 @@ if command == "sdist":
content
+=
[
os
.
path
.
join
(
root
,
f
)
for
f
in
files
if
os
.
path
.
splitext
(
f
)[
1
]
==
'.whl'
]
for
fname
in
content
:
shutil
.
copyfile
(
fname
,
os
.
path
.
join
(
data_dir
,
os
.
path
.
basename
(
fname
)))
dest
=
os
.
path
.
join
(
data_dir
,
os
.
path
.
basename
(
fname
))
os
.
makedirs
(
os
.
path
.
dirname
(
dest
),
exist_ok
=
True
)
shutil
.
copyfile
(
fname
,
dest
)
setup
(
name
=
'basthon-kernel'
,
...
...
Romain Casati
@casatir
mentioned in issue
#3 (closed)
·
Jan 29, 2021
mentioned in issue
#3 (closed)
mentioned in issue #3
Toggle commit list
Write
Preview
Supports
Markdown
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