-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (31 loc) · 1.01 KB
/
pyproject.toml
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
[tool.poetry]
name = "sqlorm-py"
version = "0.2.3"
description = "A new kind or ORM that do not abstract away your database or SQL queries."
authors = ["Maxime Bouroumeau-Fuseau <[email protected]>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/hyperflask/sqlorm"
packages = [{include = "sqlorm"}]
[tool.poetry.dependencies]
python = "^3.10"
blinker = "^1.8.2"
psycopg = { extras = ["binary"], version = "^3.1.18", optional = true }
mysql-connector-python = { version = "^8.3.0", optional = true }
pycryptodome = { version = "^3.20.0", optional = true }
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
pytest-cov = "^4.1.0"
ruff = "^0.4.3"
mkdocs-material = "^9.5.24"
mkdocs-callouts = "^1.13.2"
[tool.poetry.plugins."opentelemetry_instrumentor"]
sqlorm = "sqlorm.opentelemetry:SQLORMInstrumentor"
[tool.ruff]
include = ["sqlorm/**/*.py"]
line-length = 100
[tool.ruff.lint]
exclude = ["sqlorm/__init__.py"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"