Files
pypilot/pyproject.toml
Luke Tainton 079422d136
Some checks failed
Conventional Commit / Validate PR Title (pull_request) Successful in 7s
CI / ci (pull_request) Failing after 1m51s
Remove dependencies of dependencies
2025-10-13 18:58:18 +01:00

35 lines
641 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"
[tool.uv]
dev-dependencies = [
"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"