Skip to content

Commit 4e700a6

Browse files
committed
Initial release
1 parent aa7ca0f commit 4e700a6

File tree

4 files changed

+38
-6
lines changed

4 files changed

+38
-6
lines changed

.github/workflows/release.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Release
2+
3+
on:
4+
release:
5+
types: [created]
6+
7+
jobs:
8+
deploy:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v4
13+
14+
- name: Set up Python
15+
uses: actions/setup-python@v4
16+
with:
17+
python-version: '3.13'
18+
19+
- name: Install build tools
20+
run: |
21+
python -m pip install --upgrade pip
22+
pip install build twine
23+
24+
- name: Build distribution
25+
run: python -m build
26+
27+
- name: Upload to PyPI
28+
env:
29+
TWINE_USERNAME: __token__
30+
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
31+
run: twine upload dist/*

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 Mickael Burguet
3+
Copyright (c) 2025 Mickael Burguet
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
# sqlalchemy-memory
22

3+
[![PyPI - Version](https://img.shields.io/pypi/v/sqlalchemy-memory)](https://pypi.org/project/sqlalchemy-memory/)
4+
[![CI](https://github.com/rundef/sqlalchemy-memory/actions/workflows/ci.yml/badge.svg)](https://github.com/rundef/sqlalchemy-memory/actions/workflows/ci.yml)
5+
[![PyPI - Downloads](https://img.shields.io/pypi/dm/sqlalchemy-memory)](https://pypistats.org/packages/sqlalchemy-memory)
6+
7+
38
**In‑memory SQLAlchemy 2.0 dialect for blazing‑fast prototyping**
49

510
A pure‑Python, zero‑configuration SQLAlchemy 2.0 dialect that lives entirely in RAM.
611
Ideal for rapid prototyping, backtesting, and demos-no external database required.
712

8-
---
9-
1013
## Why ?
1114

1215
This project was inspired by the idea of creating a fast, introspectable, no-dependency backend for SQLAlchemy. Useful for prototyping, education, and testing ORM logic without spinning up a real database engine.
@@ -20,8 +23,6 @@ It's also perfect for apps that need a fast, in-memory store compatible with SQL
2023
- **Commit/rollback support**
2124
- **Merge and `get()` support**: like real SQLAlchemy behavior
2225

23-
---
24-
2526
## Installation
2627

2728
```bash

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies = [
1010
]
1111
description = "In-memory SQLAlchemy 2.0 dialect for blazing‑fast prototyping."
1212
readme = "README.md"
13-
requires-python = ">=3.7"
13+
requires-python = ">=3.8"
1414
license = { text = "MIT" }
1515
authors = [
1616
{ name="Mickael Burguet" }

0 commit comments

Comments
 (0)