-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
32 lines (27 loc) · 864 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
[tool.poetry]
name = "poetry-multiproject-plugin"
version = "1.8.3"
description = "A Poetry plugin that makes it possible to use relative package includes."
authors = ["David Vujic"]
license = "MIT"
homepage = "https://github.com/davidvujic/poetry-multiproject-plugin"
repository = "https://github.com/davidvujic/poetry-multiproject-plugin"
readme = "README.md"
packages = [{include = "poetry_multiproject_plugin"}]
[tool.poetry.plugins."poetry.application.plugin"]
poetry-multiproject-plugin = "poetry_multiproject_plugin:MultiProjectPlugin"
[tool.poetry.dependencies]
python = "^3.8"
poetry = "*"
tomlkit = "0.*"
mypy = "1.*"
[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
isort = "^5.10.1"
flake8 = "^5.0.4"
pytest = "^8.0.2"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"