-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (51 loc) · 1.27 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
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.black]
line-length = 120
target-version = ['py311']
[tool.isort]
profile = "black"
line_length = 120
lines_after_imports = 2
[tool.poetry]
name = "bany"
version = "1.2.2.post36.dev0+84e7fc0"
description = "A collection of scripts for personal finance"
authors = ["Adam Gagorik <adam.gagorik@gmail.com>"]
readme = "README.md"
license = "WTFPL"
repository = "https://github.com/AdamGagorik/bany"
keywords = ["YNAB", "finance", "budgeting"]
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
pdfplumber = ">=0.10.3"
python-dateutil = "^2.8.2"
oauthlib = "^3.2.2"
pydantic = "^2.5.1"
python-dotenv = ">=1.0.0"
requests = "^2.31.0"
rich = "^13.7.0"
diskcache = "^5.6.3"
responses = ">=0.22,<0.25"
pandas = "^2.1.3"
py-moneyed = "^3.0"
PyYAML = "^6.0.1"
networkx = "^3.2.1"
scipy = "^1.11.3"
cmd2 = "^2.4.3"
textualize = "^0.1"
setuptools = "^68.2.2"
pydantic-settings = "^2.1.0"
typer = "^0.9.0"
openpyxl = "^3.1.2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
[tool.poetry.scripts]
bany = 'bany.__main__:app'
[tool.poetry-dynamic-versioning]
enable = true
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(message)s"