Metadata-Version: 2.3
Name: mongo-entity-orm
Version: 0.1.0
Summary: A MongoDB ORM for Python
License: MIT
Keywords: mongodb,orm,mongo,async
Author: Juraj Bezdek
Author-email: juraj.bezdek@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
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
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Dist: motor (>=3.7.1,<4.0.0)
Requires-Dist: pymongo (>=4.13.2,<5.0.0)
Project-URL: Documentation, https://github.com/ju-bezdek/mongo#readme
Project-URL: Homepage, https://github.com/ju-bezdek/mongo-orm
Project-URL: Repository, https://github.com/ju-bezdek/mongo
Description-Content-Type: text/markdown

# mongo-orm

A MongoDB ORM for Python

## Installation

```bash
pip install mongo-orm
```

## Development

```bash
# Install dependencies
poetry install

# Run tests
poetry run pytest

# Format code
poetry run black .
poetry run isort .

# Type checking
poetry run mypy src/
```

## License

MIT
