-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (66 loc) · 1.92 KB
/
pyproject.toml
File metadata and controls
78 lines (66 loc) · 1.92 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[tool]
[tool.poetry]
name = "dfacto"
version = "1.2.0"
description = "Dfacto: manage your invoices."
authors = ["Eric Lemoine <erik.lemoine@gmail.com>"]
license = "BSD-3-Clause"
readme = "README.md"
homepage = "https://github.com/Elmeric/dfacto"
repository = "https://github.com/Elmeric/dfacto"
documentation = "https://Elmeric.github.io/dfacto"
classifiers=[
'Development Status :: 2 - Pre-Alpha',
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Software Development :: Libraries",
]
packages = [{include = "dfacto", from = "src"}]
[tool.poetry.dependencies]
python = "^3.9"
sqlalchemy = "^2.0.0"
jinja2 = "^3.1.2"
babel = "^2.12.1"
pyqt6 = "^6.5.0"
pyqt6-webengine = "^6.5.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.1.3"
pytest-cov = "^4.0.0"
invoke = "^2.0.0"
[tool.poetry.group.dev.dependencies]
pylint = { version = "^2.15.5", python = ">=3.7.2,<4.0" }
mypy = "^1.0"
pre-commit = {version = "^3.0.0", python = ">=3.8.0,<4.0" }
invoke = "^2.0.0"
black = {version = "^23.1.0", extras = ["colorama"]}
isort = {version = "^5.12.0", python = ">=3.8.0,<4.0", extras = ["colors"]}
pyinstaller = {version = "^5.12.0", python = ">=3.9,<3.13"}
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.4.2"
mkdocstrings = {version = "^0.22.0", extras = ["python"]}
mkdocs-material = {version = "^9.1", extras = ["python"]}
pymdown-extensions = "^10.1"
markdown-callouts = "^0.3.0"
invoke = "^2.0.0"
[tool.black]
target-version = ["py39", "py310", "py311"]
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = [
"--import-mode=importlib",
"--cov-report=term-missing",
"--cov-branch",
]
testpaths = [
"tests",
]
markers = [
"crud: marks CRUD integration tests using an in-memory database (deselect with '-m \"not crud\"')",
"api",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"