-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 1.3 KB
/
Copy pathpyproject.toml
File metadata and controls
35 lines (31 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "vue-pinia-crud-store"
version = "1.0.0"
description = "An entity-agnostic, multi-tenant CRUD pattern in two halves: a FastAPI generic-CRUD router factory (cursor pagination + allow-listed filters + bulk, with an injectable storage seam) and an original clean-room Vue 3 + Pinia store factory with optimistic create/patch/delete."
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
authors = [{ name = "Tarun Bhasin" }]
keywords = ["crud", "fastapi", "vue", "pinia", "multi-tenant", "pagination", "cursor", "router-factory"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries",
"Topic :: Internet :: WWW/HTTP",
"Typing :: Typed",
]
dependencies = []
[project.optional-dependencies]
# The router factory + a real Postgres backing store. The core package and its
# tests run without these; the in-memory store is pure standard library.
web = ["fastapi"]
dev = ["pytest>=7", "fastapi"]
[project.urls]
Documentation = "./docs/API.md"
[tool.hatch.build.targets.wheel]
packages = ["src/vue_pinia_crud_store"]