additive only — every existing name preserved, swallow contract unchanged. brings mongo in line with the redis/psql/mysql datastore trio's naming/lifecycle. bump v0.1.3 -> v0.1.4 Signed-off-by: disqualifier <dev@disqualifier.me>
17 lines
334 B
TOML
17 lines
334 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "mongo"
|
|
version = "0.1.4"
|
|
description = "async mongodb wrapper over motor with a raw escape hatch"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"motor>=3.0",
|
|
"pymongo>=4.0",
|
|
]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/mongo"]
|