-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
pyproject.toml
72 lines (66 loc) · 2.57 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
[tool.poetry]
name = "python-polylith"
version = "0.0.2"
description = "A Python Polylith repo adding tooling support for the Polylith Architecture"
authors = ["David Vujic"]
homepage = "https://github.com/davidvujic/python-polylith"
repository = "https://github.com/davidvujic/python-polylith"
readme = "README.md"
packages = [
{include = "polylith/poetry_plugin",from = "bases"},
{include = "polylith/cli",from = "bases"},
{include = "polylith/hatch_hooks", from = "bases"},
{include = "polylith/pdm_project_hooks",from = "bases"},
{include = "polylith/pdm_workspace_hooks",from = "bases"},
{include = "polylith/alias",from = "components"},
{include = "polylith/bricks",from = "components"},
{include = "polylith/check",from = "components"},
{include = "polylith/configuration",from = "components"},
{include = "polylith/commands",from = "components"},
{include = "polylith/deps",from = "components"},
{include = "polylith/development",from = "components"},
{include = "polylith/diff",from = "components"},
{include = "polylith/dirs",from = "components"},
{include = "polylith/distributions",from = "components"},
{include = "polylith/files",from = "components"},
{include = "polylith/hatch",from = "components"},
{include = "polylith/imports",from = "components"},
{include = "polylith/info",from = "components"},
{include = "polylith/interface",from = "components"},
{include = "polylith/libs",from = "components"},
{include = "polylith/parsing",from = "components"},
{include = "polylith/pdm",from = "components"},
{include = "polylith/poetry",from = "components"},
{include = "polylith/project",from = "components"},
{include = "polylith/readme",from = "components"},
{include = "polylith/repo",from = "components"},
{include = "polylith/reporting",from = "components"},
{include = "polylith/sync",from = "components"},
{include = "polylith/test",from = "components"},
{include = "polylith/toml",from = "components"},
{include = "polylith/workspace",from = "components"},
{include = "development"},
]
[tool.poetry.dependencies]
python = "^3.8.1"
poetry = "^1.2"
tomlkit = "0.*"
rich = "13.*"
cleo = "^2.1.0"
hatchling = "^1.21.0"
typer = "0.*"
[tool.poetry.group.dev.dependencies]
black = "^24.3.0"
isort = "^5.10.1"
mypy = "^1.8.0"
flake8 = "^7.0.0"
pytest = "^7.4.4"
[tool.poetry.scripts]
poly = "polylith.cli.core:app"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "-sv"