Metadata-Version: 2.4
Name: fastapi-orm-ext
Version: 0.0.1
Summary: FastAPI ORM Extensions
Project-URL: Documentation, https://github.com/pkozhem/fastapi-orm-ext#readme
Project-URL: Issues, https://github.com/pkozhem/fastapi-orm-ext/issues
Project-URL: Source, https://github.com/pkozhem/fastapi-orm-ext
Project-URL: Repository, https://github.com/pkozhem/fastapi-orm-ext
Author-email: Pavel Kozhemjachenko <pkozhem@gmail.com>
License-Expression: MIT
License-File: LICENSE
Keywords: extensions,fastapi,orm
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.13
Requires-Dist: fastapi>=0.116.1
Requires-Dist: sqlalchemy>=2.0.41
Description-Content-Type: text/markdown

# FastApi ORM Extensions

[![PyPI - Version](https://img.shields.io/pypi/v/fastapi-orm-ext.svg)](https://pypi.org/project/fastapi-orm-ext)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/fastapi-orm-ext.svg)](https://pypi.org/project/fastapi-orm-ext)

-----

## Table of Contents

- [Installation](#installation)
- [License](#license)
- [Contribution](#contribution)

## Installation

```console
pip install fastapi-orm-ext
```
or
```console
uv add fastapi-orm-ext
```
or
```
poetry add fastapi-orm-ext
```
etc


## License

`fastapi-orm-ext` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.


## Contribution
Install repository:
```console
https://github.com/pkozhem/fastapi-orm-ext.git
```

Create virtual environment, activate it and install dependencies:
```console
uv venv
source .venv/bin/activate
uv sync
```

Create new branch from actual tag:
```console
git checkout <tag>
git branch pull-<fix, feat, impr>: Short branch desc
```

Pull your changes and create pull request:
```console
git pull origin <your_branch_name>
```
