Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
pyodide
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
pyodide
Commits
ef3f4d2e
Commit
ef3f4d2e
authored
Sep 21, 2018
by
Roman Yurchak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Only allow develop mode installation of pyodide_build
parent
da6bbb3b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
setup.py
setup.py
+12
-2
No files found.
setup.py
View file @
ef3f4d2e
from
setuptools
import
setup
,
find_packages
from
setuptools
import
setup
import
sys
from
pyodide_build
import
__version__
if
'install'
in
sys
.
argv
or
'bdist_wheel'
in
sys
.
argv
:
print
(
"Error: pyodode_build is currently for fully standalone, "
"and can only be installed in develop mode. Use:
\
n
"
" pip install -e .
\
n
"
"to install it."
)
sys
.
exit
(
1
)
with
open
(
'README.md'
,
'rt'
)
as
fh
:
LONG_DESCRIPTION
=
fh
.
read
()
setup
(
name
=
'pyodide_build'
,
version
=
__version__
,
description
=
'pyodide builder'
,
...
...
@@ -13,4 +23,4 @@ setup(name='pyodide_build',
]},
url
=
"https://github.com/iodide-project/pyodide"
,
license
=
'MPL'
,
packages
=
find_packages
()
)
packages
=
[
'pyodide_build'
]
)
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