-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
72 lines (65 loc) · 1.74 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[project]
name = "tagflow"
version = "0.6.0"
description = "Block-oriented HTML generation that works with ordinary control flow"
readme = "README.md"
authors = [
{ name = "Mikael Brockman", email = "[email protected]" }
]
requires-python = ">=3.12"
license = "MIT"
license-files = ["LICENSE"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Text Processing :: Markup :: HTML",
"Topic :: Text Processing :: Markup :: XML",
]
dependencies = [
"beautifulsoup4>=4.12.3",
"fastapi>=0.115.6",
"hypercorn>=0.17.3",
"rich>=13.9.4",
"trio>=0.28.0",
]
[project.urls]
Homepage = "https://github.com/lessrest/tagflow"
"Bug Tracker" = "https://github.com/lessrest/tagflow/issues"
Repository = "https://github.com/lessrest/tagflow"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
package = true
dev-dependencies = [
# Linter and formatter
"ruff==0.*",
# Static type checker
"pyright==1.*",
# Popular Python testing framework
"pytest==8.*",
# Generates Markdown reports from pytest results
"pytest-md-report==0.6.*",
# Auto-rerun pytest on file changes
"pytest-watcher==0.*",
# Run tests in parallel
"pytest-xdist==3.6.1",
# Coverage reporting plugin for pytest
"pytest-cov==6.*",
# Code coverage measurement tool
"coverage==7.*",
# Used only for comment wrapping functionality
"autopep8==2.*",
# Watchfiles for file watching
"watchfiles==0.21.0",
]
[tool.ruff]
line-length = 76
target-version = "py312"
[tool.ruff.lint.isort]
lines-between-types = 1
length-sort = true
[tool.pyright]
venvPath = "."
venv = ".venv"