Files
MetaORM/pyproject.toml

72 lines
1.6 KiB
TOML

[project]
name = "metaorm"
version = "0.1.0"
description = "Async repository layer over SQLModel"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.12"
authors = [
{name = "Author Name", email = "author@example.com"},
]
keywords = [
"async",
"database",
"orm",
"repository",
"sqlmodel",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Database",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"pydantic>=2.0",
"pydantic-filters>=0.4.0",
"sqlalchemy>=2.0",
"sqlmodel>=0.0.22",
]
[project.urls]
Homepage = "https://github.com/OlegYurchik/metaorm"
Repository = "https://github.com/OlegYurchik/metaorm"
Issues = "https://github.com/OlegYurchik/metaorm/issues"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[dependency-groups]
dev = [
"aiosqlite>=0.22.0",
"pytest>=9.1.1",
"pytest-asyncio>=1.4.0",
"pytest-cov>=7.1.0",
"ruff>=0.16.2",
# docs
"mkdocs>=1.6.0",
"mkdocs-material>=9.5.0",
"mkdocstrings[python]>=0.25.0",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["metaorm*"]
[tool.ruff.lint]
ignore = ["RUF022"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.coverage.report]
fail_under = 90
show_missing = true