add wheel

This commit is contained in:
Jonas Weinz 2022-07-24 12:21:56 +02:00
parent 4a0dae531e
commit 092ecff9ba
9 changed files with 3 additions and 4 deletions

Binary file not shown.

View File

@ -74,7 +74,7 @@ def main():
argument_parser.add_argument( argument_parser.add_argument(
"title", type=str, help="the title of the new project") "title", type=str, help="the title of the new project")
argument_parser.add_argument( argument_parser.add_argument(
"packages", type=str, nargs="+", help="the packages to include in the new project") "packages", type=str, nargs="*", help="the packages to include in the new project")
argument_parser.add_argument("--paths", type=str, nargs="+", argument_parser.add_argument("--paths", type=str, nargs="+",
help="additional local python files to include in the new project") help="additional local python files to include in the new project")
argument_parser.add_argument("--pyscript_css_url", type=str, argument_parser.add_argument("--pyscript_css_url", type=str,

View File

@ -22,7 +22,7 @@ long_description = (here / "README.md").read_text(encoding="utf-8")
setup( setup(
name="pyscript-bootstrap-templates", name="pyscript-bootstrap-templates",
version=get_version("pyscript-bootstrap-templates/__init__.py"), version=get_version("pyscript_bootstrap_templates/__init__.py"),
description="templates and basic python/pyscript wrappers for bootstrap 5", description="templates and basic python/pyscript wrappers for bootstrap 5",
long_description=long_description, long_description=long_description,
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
@ -35,8 +35,7 @@ setup(
keywords="sample, setuptools, development", keywords="sample, setuptools, development",
package_dir={"": "pyscript-bootstrap-templates"}, packages=["pyscript_bootstrap_templates"],
packages=find_packages(where="pyscript-bootstrap-templates"),
python_requires=">=3.7, <4", python_requires=">=3.7, <4",