-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
51 lines (43 loc) · 1.19 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
[tool.pytest.ini_options]
markers = [
"e2e: end-to-end tests",
"unit: unit tests",
"regression: something was wrong and got fixed",
"callable: tesk function or method invocation, but not the result",
"cli: command line interfaces"
]
addopts = "--noconftest --ignore-glob=tests0/"
[tool.isort]
skip_gitignore = true
[tool.ruff]
lint.ignore=['E501', 'E741']
extend-exclude=["minimal.py"]
[tool.poetry]
name = "abacus-py"
version = "0.8.8"
description = "A minimal yet valid double-entry accounting system in Python."
authors = ["Evgeniy Pogrebnyak <[email protected]>"]
readme = "README.md"
packages = [
{include = "abacus"}
]
[tool.poetry.scripts]
bx = 'abacus.typer_cli.app:combined_typer_click_app'
codeblock = 'helper.codeblock:main'
[tool.poetry.dependencies]
python = ">=3.8,<3.9.7 || >3.9.7,<4.0"
rich = "^13.3.5"
pydantic = "^1.10.8"
typer = "^0.9.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.0"
ruff = "^0.0.265"
isort = "^5.12.0"
black = "^23.3.0"
mypy = "^1.3.0"
mkdocs-material = "^9.1.9"
mkdocstrings = {extras = ["python"], version = "^0.21.2"}
streamlit = "^1.30.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"