mirror of
https://github.com/elisiariocouto/leggen.git
synced 2025-12-14 12:02:19 +00:00
chore: Initial version.
This commit is contained in:
52
pyproject.toml
Normal file
52
pyproject.toml
Normal file
@@ -0,0 +1,52 @@
|
||||
[tool.poetry]
|
||||
name = "leggen"
|
||||
version = "0.1.0"
|
||||
description = "An Open Banking CLI"
|
||||
authors = ["Elisiário Couto <elisiario@couto.io>"]
|
||||
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"
|
||||
|
||||
[tool.poetry.group.dev.dependencies]
|
||||
ruff = "^0.1.14"
|
||||
pre-commit = "^3.6.0"
|
||||
black = "^24.1.1"
|
||||
|
||||
[tool.poetry.scripts]
|
||||
leggen = "leggen.main:cli"
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
|
||||
[tool.ruff]
|
||||
ignore = ["E501", "B008", "B006"]
|
||||
extend-select = ["B", "C4", "PIE", "T20", "SIM", "TCH"]
|
||||
Reference in New Issue
Block a user