-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (63 loc) · 1.98 KB
/
Copy pathpyproject.toml
File metadata and controls
72 lines (63 loc) · 1.98 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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "sqlmodel-encrypted-fields"
version = "0.2.0"
description = "Encrypted SQLModel fields backed by Tink AEAD."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Security :: Cryptography",
]
authors = [
{ name = "Isaac" }
]
dependencies = [
"sqlmodel>=0.0.42,<0.1",
"sqlalchemy>=2.0.14,<2.1",
"tink>=1.16.1,<2",
]
[project.optional-dependencies]
test = [
"fastapi>=0.141.1",
"flask>=3.1.3",
"httpx2>=2.12",
"pytest>=8.4",
"pytest-cov>=7",
]
dev = ["build>=1.2", "twine>=6", "ruff>=0.16.6", "pip-audit>=2.10"]
fastapi = ["fastapi>=0.141.1", "uvicorn>=0.35"]
flask = ["flask>=3.1.3"]
[project.urls]
Homepage = "https://github.com/script3r/sqlmodel-encrypted-fields"
Repository = "https://github.com/script3r/sqlmodel-encrypted-fields"
Issues = "https://github.com/script3r/sqlmodel-encrypted-fields/issues"
Changelog = "https://github.com/script3r/sqlmodel-encrypted-fields/blob/main/CHANGELOG.md"
[tool.setuptools.packages.find]
include = ["sqlmodel_encrypted_fields"]
exclude = ["example_app_fastapi", "example_app_fastapi.*", "example_app_flask", "example_app_flask.*", "tests", "tests.*"]
[tool.pytest.ini_options]
testpaths = ["tests", "example_app_fastapi/tests", "example_app_flask/tests"]
addopts = "--import-mode=importlib"
filterwarnings = ["error::sqlalchemy.exc.SAWarning"]
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I", "UP"]
[tool.coverage.run]
source = ["sqlmodel_encrypted_fields"]
branch = true
[tool.coverage.report]
show_missing = true
fail_under = 90