forked from nordigen/nordigen-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (38 loc) · 925 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "nordigen"
version = "1.4.0"
description = "Python client for GoCardless Bank Account Data API"
authors = ["Nordigen Solutions <bank-account-data-support@gocardless.com>"]
license = "MIT"
homepage = "https://github.com/nordigen/nordigen-python"
repository = "https://github.com/nordigen/nordigen-python"
readme = "README.md"
keywords = ["GoCardless", "Nordigen", "Nordigen API", "OpenBanking"]
include = ["CHANGELOG.md", "README.md", "LICENSE", "./nordigen/**/*"]
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.26.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
black = "^21.10b0"
pre-commit = "^2.15.0"
isort = "^5.10.0"
python-dotenv = "^0.19.2"
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
| \.git
| \.tox
| \.venv
| _build
| buck-out
| build
| main.py
| tests/
)/
'''
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"