experimental/cuda-ubi9/: hatchling-1.24.2 metadata and description

Simple index

Modern, extensible Python build backend

author_email Ofek Lev <oss@ofek.dev>
classifiers
  • Development Status :: 5 - Production/Stable
  • Intended Audience :: Developers
  • License :: OSI Approved :: MIT License
  • Natural Language :: English
  • Operating System :: OS Independent
  • Programming Language :: Python :: 3.8
  • Programming Language :: Python :: 3.9
  • Programming Language :: Python :: 3.10
  • Programming Language :: Python :: 3.11
  • Programming Language :: Python :: 3.12
  • Programming Language :: Python :: Implementation :: CPython
  • Programming Language :: Python :: Implementation :: PyPy
  • Topic :: Software Development :: Build Tools
  • Topic :: Software Development :: Libraries :: Python Modules
description_content_type text/markdown
keywords build,hatch,packaging
project_urls
  • Homepage, https://hatch.pypa.io/latest/
  • Sponsor, https://github.com/sponsors/ofek
  • History, https://hatch.pypa.io/dev/history/hatchling/
  • Tracker, https://github.com/pypa/hatch/issues
  • Source, https://github.com/pypa/hatch/tree/master/backend
requires_dist
  • packaging>=23.2
  • pathspec>=0.10.1
  • pluggy>=1.0.0
  • tomli>=1.2.2; python_version < '3.11'
  • trove-classifiers
requires_python >=3.8
File Tox results History
hatchling-1.24.2-py3-none-any.whl
Size
81 KB
Type
Python Wheel
Python
3

Hatchling

Hatch logo
Package PyPI - Version PyPI - Downloads PyPI - Python Version
Meta Hatch project linting - Ruff code style - Black types - Mypy License - MIT GitHub Sponsors

This is the extensible, standards compliant build backend used by Hatch.

Usage

The following snippet must be present in your project's pyproject.toml file in order to use Hatchling as your build backend:

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

Then a build frontend like pip, build, or Hatch itself can build or install your project automatically:

# install using pip
pip install /path/to/project

# build
python -m build /path/to/project

# build with Hatch
hatch build /path/to/project

Documentation