2021-05-03 18:51:11 +00:00
|
|
|
[metadata]
|
|
|
|
name = pyodide-build
|
2022-07-10 08:58:39 +00:00
|
|
|
version = attr: pyodide_build.__version__
|
2021-05-03 18:51:11 +00:00
|
|
|
author = Pyodide developers
|
|
|
|
description = "Tools for building Pyodide"
|
|
|
|
long_description = file: README.md
|
|
|
|
long_description_content_type = text/markdown
|
|
|
|
url = https://github.com/pyodide/pyodide
|
|
|
|
project_urls =
|
|
|
|
Bug Tracker = https://github.com/pyodide/pyodide/issues
|
|
|
|
Documentation = https://pyodide.org/en/stable/
|
|
|
|
classifiers =
|
|
|
|
Programming Language :: Python :: 3
|
|
|
|
License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
|
|
|
|
Operating System :: OS Independent
|
|
|
|
|
|
|
|
[options]
|
|
|
|
package_dir =
|
|
|
|
= .
|
2022-12-27 04:00:24 +00:00
|
|
|
packages = find_namespace:
|
2022-05-24 16:49:53 +00:00
|
|
|
python_requires = >=3.10
|
2021-05-03 18:51:11 +00:00
|
|
|
install_requires =
|
|
|
|
pyyaml
|
|
|
|
cython<3.0
|
2022-04-08 20:58:58 +00:00
|
|
|
ruamel.yaml
|
2022-04-09 20:41:10 +00:00
|
|
|
packaging
|
|
|
|
wheel
|
|
|
|
tomli
|
|
|
|
build==0.7.0
|
2022-09-12 18:18:40 +00:00
|
|
|
virtualenv
|
2022-09-11 07:20:56 +00:00
|
|
|
pydantic>=1.10.2
|
2022-12-22 10:24:28 +00:00
|
|
|
pyodide-cli~=0.2.1
|
2023-01-13 17:41:29 +00:00
|
|
|
cmake>=3.24
|
2022-11-17 01:05:14 +00:00
|
|
|
unearth~=0.6
|
|
|
|
requests
|
|
|
|
types-requests
|
|
|
|
typer
|
2022-12-27 04:02:18 +00:00
|
|
|
auditwheel-emscripten~=0.0.9
|
2023-01-04 23:45:20 +00:00
|
|
|
resolvelib
|
2023-01-16 04:46:38 +00:00
|
|
|
rich
|
2023-01-04 23:45:20 +00:00
|
|
|
|
2022-04-09 20:41:10 +00:00
|
|
|
|
2021-05-03 18:51:11 +00:00
|
|
|
[options.entry_points]
|
|
|
|
console_scripts =
|
|
|
|
pyodide-build = pyodide_build.__main__:main
|
2022-09-25 01:34:36 +00:00
|
|
|
_pywasmcross = pyodide_build.pywasmcross:compiler_main
|
|
|
|
pyodide.cli =
|
2022-11-17 01:05:14 +00:00
|
|
|
build = pyodide_build.cli.build:main
|
2022-12-15 04:43:39 +00:00
|
|
|
build-recipes = pyodide_build.cli.build_recipes:recipe
|
2022-09-25 01:34:36 +00:00
|
|
|
venv = pyodide_build.cli.venv:main
|
2022-10-25 05:52:11 +00:00
|
|
|
skeleton = pyodide_build.cli.skeleton:app
|
2023-01-04 15:07:07 +00:00
|
|
|
py-compile = pyodide_build.cli.py_compile:main
|
2022-12-23 08:20:23 +00:00
|
|
|
config = pyodide_build.cli.config:app
|
2023-01-14 13:59:42 +00:00
|
|
|
create-zipfile = pyodide_build.cli.create_zipfile:main
|
2021-05-03 18:51:11 +00:00
|
|
|
|
2022-04-09 20:41:10 +00:00
|
|
|
[options.extras_require]
|
|
|
|
test =
|
|
|
|
pytest
|
2022-07-31 10:00:45 +00:00
|
|
|
pytest-pyodide
|
2022-04-09 20:41:10 +00:00
|
|
|
|
2021-05-03 18:51:11 +00:00
|
|
|
[options.packages.find]
|
|
|
|
where = .
|
2022-12-27 04:00:24 +00:00
|
|
|
exclude =
|
|
|
|
pyodide_build.tests
|
|
|
|
|
|
|
|
[options.package_data]
|
|
|
|
pyodide_build.tools =
|
|
|
|
*.ini
|
|
|
|
pyodide_build.tools.cmake.Modules.Platform =
|
|
|
|
*.cmake
|