43 lines
525 B
TOML
43 lines
525 B
TOML
[project]
|
|
name = "fc-hooks"
|
|
version = "0.0.1"
|
|
description = "Frog Collective's commit hooks"
|
|
license = {text = "WTFPL"}
|
|
readme = "README.md"
|
|
dependencies = [
|
|
"click",
|
|
]
|
|
|
|
[project.scripts]
|
|
fc-hooks = "fc_hooks:main"
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=45"]
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["fc_hooks"]
|
|
|
|
[tool.ruff]
|
|
line-length = 120
|
|
|
|
[tool.ruff.lint]
|
|
select = [
|
|
"E",
|
|
"F",
|
|
"W",
|
|
"UP",
|
|
"B",
|
|
"SIM",
|
|
"I",
|
|
"N",
|
|
"U",
|
|
"YTT",
|
|
"ASYNC",
|
|
"RUF"
|
|
]
|
|
|
|
[tool.mypy]
|
|
strict = true
|
|
packages = "fc_hooks"
|
|
|