Metadata-Version: 2.4
Name: adome
Version: 0.1.0
Summary: A minimal command-line package for the adome project.
Project-URL: Homepage, https://pypi.org/project/adome/
Project-URL: Issues, https://pypi.org/project/adome/
Author: adome maintainers
License-Expression: MIT
License-File: LICENSE
Keywords: adome
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# adome

`adome` is a small Python package that provides a command-line entry point and a
simple importable API.

## Installation

```powershell
python -m pip install adome
```

## Usage

```powershell
adome
```

Or from Python:

```python
from adome import get_message

print(get_message())
```
