Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

96 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

hatch multi

Create multiple discrete packages from optional-dependencies (extras)

Build Status codecov License PyPI

Overview

A small hatch plugin to create multiple discrete packages from a single package, via optional-dependencies.

pyproject.toml

[project]
name = "my-project"
...
dynamic = ["dependencies"]

[project.optional-dependencies]
main = [...]
other = [...]

[tool.hatch.metadata.hooks.hatch-multi]
primary = "main"

# Required for split sdists to retain their package name when installed.
[tool.hatch.build.targets.sdist.hooks.hatch-multi]
python -m build
# Produces my-project wheel and sdist, with dependencies from [project.optional-dependencies.main]

HATCH_MULTI_BUILD=other python -m build
# Produces my-project-other wheel and sdist, with dependencies from [project.optional-dependencies.other]

Note

This library was generated using copier from the Base Python Project Template repository.

About

Create multiple discrete packages from optional-dependencies (extras)

Topics

Resources

Code of conduct

Stars

Watchers

Forks

Releases

Contributors

Languages