-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
47 lines (37 loc) · 924 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[project]
name = "ynab-sync"
version = "0.1.0"
authors = [
{ name="Aleksei Atavin", email="[email protected]" },
]
description = "Allows you to sync between your bank account (if it is supported by GoCardless) and upload transactions to YNAB on regular basis (e.g. crontab job could suffice)"
requires-python = ">=3.11"
dependencies = [
"appeal",
"pydantic",
"requests",
"tabulate",
"bullet"
]
[project.scripts]
ynab-sync = "ynab_sync.__main__:app.main"
[project.urls]
"Homepage" = "https://github.com/axeoman/ynab-sync"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 125
[tool.isort]
profile = "black"
line-length = 125
[tool.pyright]
include = ["ynab_sync"]
exclude = []
venv = "venv"
stubPath = ""
venvPath = "."
reportMissingImports = true
reportMissingTypeStubs = false
pythonVersion = "3.11"
pythonPlatform = "Linux"