-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 849 Bytes
/
pyproject.toml
File metadata and controls
33 lines (28 loc) · 849 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
[project]
name = "enablebanking_sdk"
dynamic = [ "version" ]
[tool.poetry]
name = "enablebanking_sdk"
version = "0.1.6"
description = ""
authors = ["NOCFO <team@nocfo.io>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "enablebanking_sdk", from = "src" }]
urls = { Homepage = "https://github.com/nocfo/enablebanking_sdk", "Bug Tracker" = "https://github.com/nocfo/enablebanking_sdk/issues" }
[tool.poetry.dependencies]
python = "^3.11"
requests = "^2.32.3"
pyjwt = {version = "^2.9.0", extras = ["crypto"]}
pydantic = "^2.9.2"
[tool.poetry.group.dev.dependencies]
pre-commit = "^4.0.1"
mypy = "^1.13.0"
types-requests = "^2.32.0.20241016"
ruff = "^0.7.2"
commentjson = "^0.9.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401", "F403"]