-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (25 loc) · 656 Bytes
/
pyproject.toml
File metadata and controls
31 lines (25 loc) · 656 Bytes
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
[project]
name = "python-hiccup"
version = "0.4.0"
description = "Python Hiccup is a library for representing HTML using plain Python data structures"
authors = [{name = "David Vujic"}]
readme = "README.md"
requires-python = ">=3.10"
dependencies = []
[project.urls]
Repository = "https://github.com/DavidVujic/python-hiccup"
[tool.ruff]
lint.select = ["ALL"]
lint.ignore = ["COM812", "ISC001", "D203", "D213"]
line-length = 100
[tool.ruff.lint.per-file-ignores]
"test/*.py" = ["S101"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"mypy>=1.13.0",
"pytest>=8.3.4",
"ruff>=0.8.3",
]