-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (28 loc) · 945 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
[tool.poetry]
name = "iprecommit"
version = "0.7.1"
description = "Dead-simple Git pre-commit hooks"
authors = ["Ian Fisher <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.scripts]
iprecommit = "iprecommit.main:main"
iprecommit-commit-msg-format = "iprecommit.extras.commit_msg_format:main"
iprecommit-newline-at-eof = "iprecommit.extras.newline_at_eof:main"
iprecommit-no-forbidden-strings = "iprecommit.extras.no_forbidden_strings:main"
iprecommit-typos = "iprecommit.extras.typos:main"
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.group.dev.dependencies]
mypy = "^1.11.1"
flake8 = "^7.1.1"
pytest = "^8.3.2"
[project]
name = "iprecommit"
[project.urls]
Homepage = "https://github.com/iafisher/iprecommit/"
Repository = "https://github.com/iafisher/iprecommit/"
Issues = "https://github.com/iafisher/iprecommit/issues"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"