Common utilities for Python packages
Project description
Package Utils
Usage
from dataclasses import dataclass, field
from pathlib import Path
from package_utils.cli.entry_point import create_entry_point
@dataclass
class Options:
debug: bool = False
output_path: Path = field(default_factory=Path.cwd)
def main(options: Options):
...
entry_point = create_entry_point(main)
if __name__ == "__main__":
entry_point()
see examples in tests and python-package-template
Installation
pip install package-utils
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
package_utils-0.6.7.tar.gz
(9.6 kB
view hashes)
Built Distribution
Close
Hashes for package_utils-0.6.7-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 22ed09f84f8d7d7b2cf731f2e895d5cbf3cfe46af2dac2bd673c44aa958925d6 |
|
MD5 | 5619ce536d1251da311914dfb9ee2ce6 |
|
BLAKE2b-256 | 3b1fd19261f710f2b164b3dc68441483d78d49e1b5f45ccbd91ec960a78c2049 |