-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
32 lines (27 loc) · 954 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
[tool.poetry]
name = "pywisetransfer"
version = "0.3.4"
description = "Python library for the TransferWise API"
authors = ["James Addison <[email protected]>"]
homepage = "https://www.github.com/jayaddison/pywisetransfer"
repository = "https://www.github.com/jayaddison/pywisetransfer"
license = "AGPL-3.0"
readme = "README.md"
keywords = ["payments", "transferwise"]
[tool.poetry.dependencies]
python = "^3.9"
apiron = "^8.0.0"
munch = "^4.0.0"
cryptography = "^43.0.0"
black = { version = "^24.4.0", optional = true }
pytest = { version = "^8.1.1", optional = true }
responses = { version = "^0.25.0", optional = true }
munch-stubs = { version = "^0.1.2", optional = true }
types-cryptography = { version = "^3.3.23.2", optional = true }
[tool.black]
line-length = 100
[tool.poetry.extras]
dev = ["black", "munch-stubs", "pytest", "responses", "types-cryptography"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"