-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 871 Bytes
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 871 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
36
37
38
39
40
41
42
43
44
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.version]
path = "eoapi/auth_utils/__init__.py"
source = "file"
[tool.pdm.build]
excludes = ["tests/", "**/.mypy_cache", "**/.DS_Store"]
includes = ["eoapi"]
[project]
authors = [
{name = "Anthony Lukach", email = "anthony@developmentseed.org"},
]
dependencies = [
"cryptography>=43.0.0",
"fastapi>=0.7.0",
"pyjwt>=2.9.0",
]
description = "Authentication & authorization helpers for eoAPI"
dynamic = ["version"]
license = {file = "LICENSE"}
name = "eoapi-auth-utils"
readme = "README.md"
requires-python = ">=3.8"
[project.optional-dependencies]
lint = [
"pre-commit",
]
testing = [
"coverage",
"httpx>=0.27.0",
"jwcrypto>=1.5.6",
"pytest>=6.0",
]
[tool.mypy]
no_implicit_optional = true
strict_optional = true
namespace_packages = true
explicit_package_bases = true