Commit ef3f4d2e authored by Roman Yurchak's avatar Roman Yurchak

Only allow develop mode installation of pyodide_build

parent da6bbb3b
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'])
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment