-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (52 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
61 lines (52 loc) · 1.23 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
[project]
name = "cerbos-sqlalchemy"
description = "SQLAlchemy adapter for generating queries with Cerbos: an open core, language-agnostic, scalable authorization solution"
authors = [
{name = "Cerbos Developers", email = "sdk+sqlalchemy@cerbos.dev"},
]
dependencies = [
"sqlalchemy>=1.4",
"cerbos>=0.10.4",
]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Security",
"Topic :: Software Development :: Libraries",
]
readme = "README.md"
license = {text = "Apache-2.0"}
dynamic = ["version"]
[project.urls]
Homepage = "https://cerbos.dev"
Repository = "https://github.com/cerbos/query-plan-adapters/tree/main/sqlalchemy"
[project.optional-dependencies]
testcontainers = [
"testcontainers>=3.5.3",
]
[build-system]
requires = ["pdm-pep517>=1.0.0"]
build-backend = "pdm.pep517.api"
[tool]
[tool.pdm]
[tool.pdm.version]
source = "scm"
[tool.pdm.dev-dependencies]
test = [
"pytest>=7.1.2",
]
lint = [
"black>=22.6.0",
"isort>=5.10.1",
]
tools = [
"ptpython>=3.0.25",
]
[tool.pdm.scripts]
test = "pytest"
isort = {cmd = "isort ."}
black = {cmd = "black ."}
format = {composite = ["isort", "black"]}
[tool.isort]
profile = 'black'