1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
|
#!/usr/bin/env python3
#
# __init__.py
"""
A simple Python wheel builder for simple projects.
"""
#
# Copyright © 2021 Dominic Davis-Foster <dominic@davis-foster.co.uk>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
# OR OTHER DEALINGS IN THE SOFTWARE.
#
# stdlib
import os
__author__: str = "Dominic Davis-Foster"
__copyright__: str = "2021 Dominic Davis-Foster"
__license__: str = "MIT License"
__version__: str = "0.1.1"
__email__: str = "dominic@davis-foster.co.uk"
__all__ = ("build_sdist", "build_wheel")
def build_wheel(wheel_directory, config_settings=None, metadata_directory=None) -> str: # noqa: MAN001
"""
:pep:`517` hook to build a wheel binary distribution.
.. seealso:: https://www.python.org/dev/peps/pep-0517/#build-wheel
:param wheel_directory:
:param config_settings:
:param metadata_directory:
:returns: The filename of the created archive.
"""
# 3rd party
from consolekit.tracebacks import handle_tracebacks
from domdf_python_tools.paths import PathPlus, TemporaryPathPlus
# this package
from whey.foreman import Foreman
from whey.utils import WheyBackendTBHandler
show_traceback = bool(int(os.getenv("WHEY_TRACEBACK", 0)))
verbose = bool(int(os.getenv("WHEY_VERBOSE", 1)))
with TemporaryPathPlus() as tmpdir, handle_tracebacks(show_traceback, WheyBackendTBHandler):
foreman = Foreman(project_dir=PathPlus.cwd())
return foreman.build_wheel(build_dir=tmpdir, out_dir=wheel_directory, verbose=verbose)
def build_sdist(sdist_directory, config_settings=None) -> str: # noqa: MAN001
"""
:pep:`517` hook to build a source distribution.
.. seealso:: https://www.python.org/dev/peps/pep-0517/#build-sdist
:param sdist_directory:
:param config_settings:
:returns: The filename of the created archive.
"""
# 3rd party
from consolekit.tracebacks import handle_tracebacks
from domdf_python_tools.paths import PathPlus, TemporaryPathPlus
# this package
from whey.foreman import Foreman
from whey.utils import WheyBackendTBHandler
show_traceback = bool(int(os.getenv("WHEY_TRACEBACK", 0)))
verbose = bool(int(os.getenv("WHEY_VERBOSE", 1)))
with TemporaryPathPlus() as tmpdir, handle_tracebacks(show_traceback, WheyBackendTBHandler):
foreman = Foreman(project_dir=PathPlus.cwd())
return foreman.build_sdist(build_dir=tmpdir, out_dir=sdist_directory, verbose=verbose)
def get_requires_for_build_sdist(config_settings=None): # pragma: no cover # noqa: MAN001,MAN002
return []
def get_requires_for_build_editable(config_settings=None): # pragma: no cover # noqa: MAN001,MAN002
return ["editables>=0.2"]
def build_editable(wheel_directory, config_settings=None, metadata_directory=None): # noqa: MAN001,MAN002
"""
:pep:`517` hook to build an editable wheel.
.. seealso:: :pep:`660`
:param wheel_directory:
:param config_settings:
:param metadata_directory:
"""
# stdlib
from typing import Type, cast
# 3rd party
from consolekit.tracebacks import handle_tracebacks
from domdf_python_tools.paths import PathPlus, TemporaryPathPlus
# this package
from whey.builder import WheelBuilder
from whey.foreman import Foreman
from whey.utils import WheyBackendTBHandler
show_traceback = bool(int(os.getenv("WHEY_TRACEBACK", 0)))
verbose = bool(int(os.getenv("WHEY_VERBOSE", 1)))
with TemporaryPathPlus() as tmpdir, handle_tracebacks(show_traceback, WheyBackendTBHandler):
foreman = Foreman(project_dir=PathPlus.cwd())
builder_cls: Type[WheelBuilder] = cast(Type[WheelBuilder], foreman.get_builder("wheel"))
builder = builder_cls(
foreman.project_dir,
foreman.config,
build_dir=tmpdir,
out_dir=wheel_directory,
verbose=verbose,
)
return builder.build_editable()
|