-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (68 loc) · 1.95 KB
/
Copy pathpyproject.toml
File metadata and controls
77 lines (68 loc) · 1.95 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[build-system]
requires = [
"setuptools>=80", # Recommended by setuptools-scm
"setuptools-scm",
]
build-backend = "setuptools.build_meta"
[project]
name = "SQLAlchemy-History"
description = "History tracking extension for SQLAlchemy."
dynamic = ['version']
authors = [
{ "name" = "Corridor Platforms", "email" = "postmaster@corridorplatforms.com" },
]
license = "Apache-2.0 AND BSD-3-Clause"
license-files = ["LICENSE"]
requires-python = ">=3.9"
readme = "docs/README.md"
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = ["SQLAlchemy>=2", "SQLAlchemy-Utils>=0.30.12", "anyio>3"]
[project.optional-dependencies]
asyncio = ["SQLAlchemy[asyncio]>=2"]
alembic = ["alembic"]
[project.urls]
Homepage = "https://github.com/corridor/sqlalchemy-history"
Repository = "https://github.com/corridor/sqlalchemy-history"
Issues = "https://github.com/corridor/sqlalchemy-history/issues"
Changelog = "https://github.com/corridor/sqlalchemy-history/releases"
[dependency-groups]
dev = ["ruff", "prek"]
test = [
"sqlalchemy-history[asyncio]",
"pytest",
"pytest-cov",
# Drivers
"psycopg2-binary",
"PyMySQL",
"pyodbc",
"oracledb", # Supports both sync and async
"aiosqlite",
"asyncpg",
"aioodbc",
"aiomysql",
"importlib-metadata",
"termcolor", # Used in benchmark.py
]
docs = [
"mkdocs",
"mkdocs-autorefs",
"mkdocs-awesome-pages-plugin",
"mkdocstrings-python",
]
[tool.setuptools_scm]
root = "."
[tool.setuptools.packages.find]
include = ["sqlalchemy_history", "sqlalchemy_history.*"]
[tool.setuptools.package-data]
sqlalchemy_history = ["py.typed"]
[tool.coverage.run]
dynamic_context = "test_function"
branch = true
[tool.uv]
exclude-newer = "1 week" # Cooldown period for new vulnerabilities