Metadata-Version: 2.4
Name: atomsql
Version: 0.0.3
Summary: A lightweight Object-Relational Mapping (ORM) library for Python with support for SQLite and PostgreSQL
Author: Prashant Singh
Author-email: Prashant Singh <box_prashant@outlook.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/prashant-fintech/atomsql
Project-URL: Repository, https://github.com/prashant-fintech/atomsql
Project-URL: Issues, https://github.com/prashant-fintech/atomsql/issues
Keywords: orm,database,sqlite,postgresql,sql
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Database
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: psycopg[binary]>=3.3.2
Dynamic: author
Dynamic: license-file

# AtomSQL

AtomSQL is a small, lightweight Object-Relational Mapping (ORM) library for Python.

## Features

- Simple and intuitive API
- Lightweight with minimal dependencies
- Basic CRUD operations support

## Installation

```bash
pip install atomsql
```

## Usage

```python
from atomsql import Database

# Usage examples coming soon...
```

## Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

## License

[MIT](https://choosealicense.com/licenses/mit/)
