Metadata-Version: 2.2
Name: attas
Version: 0.0.1
Summary: Bootstrap package for the future Attas release.
License: MIT
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.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# attas

`attas` is a tiny bootstrap package that reserves the project name on PyPI
while the fuller Attas release is being prepared.

It includes:

- a small importable Python API
- a simple CLI entry point
- basic project metadata for future iteration

## Install

```bash
python -m pip install attas
```

## Quickstart

```python
from attas import describe, hello

print(describe())
print(hello("developer"))
```

## CLI

```bash
attas
attas --name developer
attas --json
```

