-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 799 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 799 Bytes
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
[build-system]
requires = ["setuptools>=69.0"]
build-backend = "setuptools.build_meta"
[project]
name = "sqlmodel-encrypted-fields"
version = "0.1.0"
description = "Encrypted SQLModel fields backed by Tink AEAD."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [
{ name = "Isaac" }
]
dependencies = [
"sqlmodel>=0.0.16",
"tink>=1.9.0",
]
[project.optional-dependencies]
test = [
"fastapi>=0.110",
"httpx>=0.27",
"pytest>=7.4",
]
[project.urls]
Homepage = "https://example.com/sqlmodel-encrypted-fields"
[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"]