Files
pyfconfig/pyproject.toml
T

32 lines
557 B
TOML

[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 = []