[build-system]
requires = ["maturin>=1.7,<2"]
build-backend = "maturin"
[project]
name = "forgedb"
description = "ForgeDB — an application database generator. Compiles a declarative .forge schema into tailored Rust database code, a TypeScript SDK, and a REST API."
readme = "README.md"
requires-python = ">=3.8"
license = { text = "MIT OR Apache-2.0" }
authors = [{ name = "Collin Kokotas" }]
keywords = ["database", "codegen", "orm", "cli", "generator"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Rust",
"Topic :: Database",
"Topic :: Software Development :: Code Generators",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/hoodiecollin/forgedb"
Repository = "https://github.com/hoodiecollin/forgedb"
[tool.maturin]
bindings = "bin"
features = ["lsp"]
manifest-path = "Cargo.toml"
strip = true