-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (53 loc) · 1.26 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
53
54
55
56
57
58
59
60
[project]
name = "leggen"
version = "0.6.10"
description = "An Open Banking CLI"
authors = [{ name = "Elisiário Couto", email = "[email protected]" }]
requires-python = "~=3.12"
readme = "README.md"
license = "MIT"
keywords = [
"openbanking",
"cli",
"psd2",
"gocardless",
"mongodb",
"bank",
"transactions",
"finance",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Financial and Insurance Industry",
"Topic :: Utilities",
"Topic :: Office/Business :: Financial",
]
dependencies = [
"click>=8.1.7,<9",
"requests>=2.31.0,<3",
"loguru>=0.7.2,<0.8",
"tabulate>=0.9.0,<0.10",
"pymongo>=4.6.1,<5",
"discord-webhook>=1.3.1,<2",
]
[project.urls]
Repository = "https://github.com/elisiariocouto/leggen"
[project.scripts]
leggen = "leggen.main:cli"
[dependency-groups]
dev = [
"ruff>=0.6.1",
"pre-commit>=3.6.0",
]
[tool.hatch.build.targets.sdist]
include = ["leggen"]
[tool.hatch.build.targets.wheel]
include = ["leggen"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
lint.ignore = ["E501", "B008", "B006"]
lint.extend-select = ["B", "C4", "PIE", "T20", "SIM", "TCH"]