-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (46 loc) · 1.13 KB
/
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
43
44
45
46
47
48
49
50
51
52
[tool.poetry]
name = "leggen"
version = "0.6.7"
description = "An Open Banking CLI"
authors = ["Elisiário Couto <[email protected]>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/elisiariocouto/leggen"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Financial and Insurance Industry",
"Topic :: Utilities",
"Topic :: Office/Business :: Financial",
]
keywords = [
"openbanking",
"cli",
"psd2",
"gocardless",
"mongodb",
"bank",
"transactions",
"finance",
]
packages = [{ "include" = "leggen" }]
[tool.poetry.dependencies]
python = "^3.12"
click = "^8.1.7"
requests = "^2.31.0"
loguru = "^0.7.2"
tabulate = "^0.9.0"
pymongo = "^4.6.1"
discord-webhook = "^1.3.1"
[tool.poetry.group.dev.dependencies]
ruff = "^0.6.1"
pre-commit = "^3.6.0"
[tool.poetry.scripts]
leggen = "leggen.main:cli"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
lint.ignore = ["E501", "B008", "B006"]
lint.extend-select = ["B", "C4", "PIE", "T20", "SIM", "TCH"]