-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
29 lines (24 loc) · 876 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
[tool.poetry]
name = "poetry-pre-commit-plugin"
version = "0.1.2"
description = "Poetry plugin for automatically installing pre-commit hook when it is added to a project"
authors = ["Vytautas Strimaitis <[email protected]>"]
homepage = "https://github.com/vstrimaitis/poetry-pre-commit-plugin"
documentation = "https://github.com/vstrimaitis/poetry-pre-commit-plugin"
readme = "README.md"
packages = [{include = "poetry_pre_commit_plugin", from = "src"}]
[tool.poetry.dependencies]
python = "^3.7"
poetry = "^1.2.0b1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.2"
mypy = "^0.971"
black = "^22.6.0"
isort = "^5.10.1"
[tool.poetry.plugins."poetry.application.plugin"]
poetry-pre-commit-plugin = "poetry_pre_commit_plugin.plugin:PreCommitPlugin"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"