Files
pypilot/pyproject.toml
Luke Tainton dd90bb7eb3
Some checks failed
Conventional Commit / Validate PR Title (pull_request) Successful in 6s
CI / ci (pull_request) Failing after 2m13s
fix(deps): update dependency group format in pyproject.toml
2025-10-13 19:00:27 +01:00

35 lines
638 B
TOML

[project]
name = "ipilot"
version = "0.0.0"
description = "IP Information Lookup Tool"
readme = "README.md"
authors = [
{name = "Luke Tainton", email = "luke@tainton.uk"},
]
requires-python = "<4.0,>=3.11"
dependencies = [
"requests==2.32.5",
"tabulate==0.9.0",
]
[project.scripts]
app = "app.main:main"
[dependency-groups]
dev = [
"black<25.9.1,>=25.9.0",
"coverage<8.0.0,>=7.5.0",
"pylint<4.0.0,>=3.1.0",
"pylint-exit<2.0.0,>=1.2.0",
"pytest<9.0.0,>=8.1.1",
"requests-mock<2.0.0,>=1.12.1",
]
[tool.pdm.build]
includes = []
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"