-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
73 lines (62 loc) · 1.34 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[tool.poetry]
name = "noclockscli"
version = "0.1.0"
description = "No Clocks Command Line Interface"
authors = ["Jimmy Briggs <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "noclockscli", from = "src" },
]
[tool.poetry.scripts]
noclockscli = "noclockscli.__main__:cli"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
pyinstaller = "^6.4.0"
click = "^8.1.7"
[tool.poetry.group.dev.dependencies]
black = "^24.2.0"
flake8 = "^7.0.0"
isort = "^5.13.2"
setuptools = "^69.1.1"
autoflake = "^2.3.0"
[tool.poetry.group.tests.dependencies]
pytest = "^8.0.2"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.5.3"
mkdocs-material = "^9.5.12"
pymdown-extensions = "^10.7"
fontawesome-markdown = "^0.2.6"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 79
target-version = ['py310']
exclude = '''
(
/(
\.git
| \.pytest_cache
| .venv
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| build
| dist
)/
)
'''
[tool.isort]
line_length = 79
profile = "black"
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
skip_glob = ["*/venv/*", "*/.venv/*"]
[tool.pytest.ini_options]
pythonpath = ["src"]