-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 1.24 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
36
37
38
39
40
41
[tool.poetry]
name = "ORMagic"
version = "0.16.1"
description = "ORMagic is a simple, fast, and lightweight ORM for Python, built on top of Pydantic."
license = "MIT"
authors = ["SpaceShaman <spaceshaman@tuta.io>"]
readme = "README.md"
homepage = "https://spaceshaman.github.io/ORMagic/"
documentation = "https://spaceshaman.github.io/ORMagic/"
repository = "https://github.com/SpaceShaman/ORMagic"
keywords = ["sql", "orm", "database", "sqlite", "db", "sqlite3", "pydantic", "fastapi", "postgresql", "psycopg2", "postgres"]
classifiers = [
"Framework :: Pydantic",
"Framework :: Pydantic :: 2",
"Programming Language :: SQL",
]
[tool.poetry.dependencies]
python = "^3.11"
pydantic = "^2.8.2"
psycopg2-binary = {version = "^2.9.10", optional = true}
[tool.poetry.extras]
postgres = ["psycopg2-binary"]
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.2"
pytest-cov = "^5.0.0"
ruff = "^0.5.1"
mypy = "^1.10.1"
mkdocs-material = "^9.5.31"
mkdocs-git-revision-date-localized-plugin = "^1.2.6"
mkdocs-git-committers-plugin-2 = "^2.3.0"
mkdocs-include-markdown-plugin = "^6.2.2"
pymdown-extensions = "^10.9"
pygments = "^2.18.0"
mkdocs-awesome-pages-plugin = "^2.9.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"