summaryrefslogtreecommitdiff
path: root/src/wheel/__init__.py
blob: 08132a2eb787c75ba63355addf6a3facd821f084 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from __future__ import annotations

__all__ = [
    "WheelError",
    "WheelReader",
    "WheelWriter",
    "make_filename",
    "write_wheelfile",
]
__version__ = "1.0.0a1"

from ._wheelfile import (
    WheelError,
    WheelReader,
    WheelWriter,
    make_filename,
    write_wheelfile,
)