Initial commit

This commit is contained in:
2025-05-21 16:19:06 +02:00
commit 4ec4a27b89
23 changed files with 1230 additions and 0 deletions

30
pyproject.toml Normal file
View File

@@ -0,0 +1,30 @@
[project]
name = "hpoi"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "prettysunflower", email = "me@prettysunflower.moe" }
]
requires-python = ">=3.11"
dependencies = [
"aiohttp>=3.11.18",
"beautifulsoup4>=4.13.4",
"lxml>=5.4.0",
"pytest-asyncio>=0.26.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"black>=25.1.0",
"pytest>=8.3.5",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_functions = "test_*"