File: design.md

package info (click to toggle)
python-installer 0.7.0%2Bdfsg1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 400 kB
  • sloc: python: 2,845; makefile: 11; sh: 8
file content (22 lines) | stat: -rw-r--r-- 867 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Design and Scope

## What this is for

This project is born out of [this discussion][1]. Effectively, the volunteers
who maintain the Python packaging toolchain identified a need for a library in
the ecology that handles the details of "wheel -> installed package". This is
that library.

There's also a need for “a fast tool to populate a package into an environment”
and this library can be used to build that. This package itself might also
"grow" a CLI, to provide just that functionality.

[1]: https://discuss.python.org/t/3869/

## What is provided

- Abstractions for installation of a wheel distribution.
- Utilities for writing concrete implementations of these abstractions.
- Concrete implementations of these abstraction, for the most common usecase.
- Utilities for handling wheel RECORD files.
- Utilities for generating Python script launchers.