Metadata-Version: 2.3
Name: aresource
Version: 0.0.3
Summary: 
Author: Peter Babka
Author-email: 159peter951@gmail.com
Requires-Python: >=3.11, <4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Provides-Extra: aiohttp
Provides-Extra: hocon
Provides-Extra: pyyaml
Requires-Dist: aiohttp (>=3.0.0,<4.0.0) ; extra == "aiohttp"
Requires-Dist: pyhocon (>=0.3.0,<0.4.0) ; extra == "hocon"
Requires-Dist: pyyaml (>=6.0.0,<7.0.0) ; extra == "pyyaml"
Project-URL: Repository, https://github.com/xbabka01/aresource
Description-Content-Type: text/markdown

# aresource

[![pypi](https://img.shields.io/pypi/v/aresource)](https://pypi.org/project/aresource/)
[![python](https://img.shields.io/pypi/pyversions/aresource.svg)](https://pypi.org/project/aresource/)

A Python project for resource management.

## Project Structure

```
src/
  aresource/
tests/
```

## Installation

Use [Poetry](https://python-poetry.org/) to install dependencies:

```sh
poetry install
```

## Usage

Import and use the package in your Python code:

```python
from aresource import manager
```

## Testing

Run tests with:

```sh
poetry run pytest
```

## Code Quality

- Type checking: `poetry run mypy src/`
- Linting: `poetry run ruff src/`

## License

MIT License
