Initial commit: ifconfig.me clone on the kaya framework

This commit is contained in:
2026-09-03 13:13:05 +00:00
commit 9523f357df
21 changed files with 828 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "pyfconfig"
version = "0.1.0"
description = "A clone of https://ifconfig.me/ built on the kaya framework"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"kaya-core",
"kaya-rsgi",
"granian>=2.0",
"httpx",
"pwo",
]
[project.optional-dependencies]
dev = [
"mypy",
]
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[tool.mypy]
python_version = "3.12"
ignore_missing_imports = true
plugins = []