mirror of
https://github.com/progval/Limnoria.git
synced 2025-04-29 06:51:08 -05:00
setup: Add support for building wheels
Required to run the code on Pyodide.
This commit is contained in:
parent
daad2d4002
commit
e895444c8c
11
setup.py
11
setup.py
@ -175,6 +175,17 @@ for plugin in plugins:
|
|||||||
if files:
|
if files:
|
||||||
package_data.update({plugin_name: files})
|
package_data.update({plugin_name: files})
|
||||||
|
|
||||||
|
if 'bdist_wheel' in sys.argv:
|
||||||
|
# Add support for bdist_wheel. Unlike setuptools, distutils does not
|
||||||
|
# support it out of the box.
|
||||||
|
# However, we should not import it in a regular install, because
|
||||||
|
# it breaks script install:
|
||||||
|
# pkg_resources.ResolutionError: Script 'scripts/supybot' not found in metadata at None
|
||||||
|
import distutils_commands
|
||||||
|
@distutils_commands.command('bdist_wheel')
|
||||||
|
def bdist_wheel():
|
||||||
|
distutils_commands.bdist_wheel()
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
# Metadata
|
# Metadata
|
||||||
name='limnoria',
|
name='limnoria',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user