-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (34 loc) · 919 Bytes
/
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
[tool.poetry]
name = "jg.beak"
version = "0.0"
description = "Analyzes text, returns tags"
authors = ["Honza Javorek <[email protected]>"]
license = "AGPL-3.0-only"
readme = "README.md"
homepage = "https://junior.guru/"
repository = "https://github.com/juniorguru/beak"
packages = [{ include = "jg" }]
[tool.poetry.scripts]
beak = "jg.beak.core:main"
[tool.poetry.dependencies]
python = ">=3.11 <4.0"
click = "8.1.8"
[tool.poetry.group.dev.dependencies]
pytest = "8.3.4"
pytest-ruff = "0.4.1"
ruff = "0.9.2"
[tool.pytest.ini_options]
python_files = "test_*.py"
testpaths = "tests"
addopts = "--import-mode=importlib --ff --ruff --ruff-format"
[tool.ruff]
target-version = "py311"
extend-exclude = ["rule_template"]
[tool.ruff.lint]
extend-select = ["I"]
[tool.ruff.lint.isort]
combine-as-imports = true
lines-after-imports = 2
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"