-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.19 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (50 loc) · 1.19 KB
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
[project]
name = "finparse"
version = "0.1.0"
description = ""
authors = [{ name = "Michael Shustin", email = "michaelshustin@gmail.com" }]
requires-python = "~=3.12"
dependencies = [
"openpyxl>=3.1.5,<4",
"xlrd>=2.0.1,<3",
"requests>=2.32.3,<3",
"loguru>=0.7.2,<0.8",
"pick>=2.3.2,<3",
"firefly-iii-api-client>=2.0.12.0,<3",
"pydantic-settings>=2.4.0,<3",
"xattr>=1.1.0,<2",
"typer>=0.12.3,<0.13",
"pydantic-ai>=0.1.0,<1",
]
[project.optional-dependencies]
dev = [
"black[d]>=24.8.0,<25",
"pytest>=8.3.2,<9",
"pytest-asyncio>=1.0.0,<2",
"ruff>=0.3.0,<0.4",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.black]
line-length = 90
target-version = ["py312"]
include = '\.pyi?$'
[tool.ruff]
line-length = 120
target-version = "py312"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
]
ignore = []
[tool.ruff.lint.per-file-ignores]
"**/main.py" = ["B008"] # Ignore B008 in main.py where we use Typer
[tool.ruff.lint.isort]
known-first-party = ["finparse"]