-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
50 lines (43 loc) · 1.12 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
[tool.poetry]
authors = ["demonno <[email protected]>"]
description = "Automate transaction import troubles to ynab."
keywords = ["ynab", "api", "import", "cli"]
license = "MIT"
name = "ynab-import"
readme = "README.md"
repository = "https://github.com/demonno/ynab-import"
version = "0.0.10"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/demonno/ynab-import/issues"
[tool.poetry.dependencies]
dataclass-csv = "^1.1"
pydantic = {extras = ["dotenv"], version = "^1.9.0"}
python = "^3.8"
typer = "^0.4.1"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
bump2version = "^1.0.1"
coverage = "^6.3.2"
flake8 = "^3.8.4"
hypothesis = "^6.4"
isort = "^5.4.2"
mypy = "^1.6.1"
pytest = "^6.1.1"
pytest-cov = "^2.10.1"
pytest-sugar = "^0.9.4"
requests-mock = "^1.8"
safety = "^1.9.0"
[tool.poetry.scripts]
ynab-import = "ynab_import.runner.cli:app"
[tool.isort]
combine_as_imports = true
profile = "black"
src_paths = ["ynab_import", "tests"]
[build-system]
build-backend = "poetry.masonry.api"
requires = ["poetry>=0.12"]
[tool.mypy]
python_version = "3.8"
ignore_missing_imports = true
warn_return_any = true
warn_unused_configs = true