2025-01-17 00:30:00 +01:00
|
|
|
[project]
|
2024-04-27 18:43:08 +01:00
|
|
|
name = "ipilot"
|
2024-12-25 10:19:42 +00:00
|
|
|
version = "0.0.0"
|
2024-04-27 18:28:14 +01:00
|
|
|
description = "IP Information Lookup Tool"
|
|
|
|
readme = "README.md"
|
2025-01-17 00:30:00 +01:00
|
|
|
authors = [
|
|
|
|
{name = "Luke Tainton", email = "luke@tainton.uk"},
|
|
|
|
]
|
|
|
|
requires-python = "<4.0,>=3.11"
|
|
|
|
dependencies = [
|
2025-02-04 20:02:33 +00:00
|
|
|
"astroid==3.3.8",
|
2025-01-17 00:30:00 +01:00
|
|
|
"attrs==24.3.0",
|
|
|
|
"certifi==2024.12.14",
|
|
|
|
"charset-normalizer==3.4.1",
|
|
|
|
"click==8.1.8",
|
|
|
|
"dill==0.3.9",
|
|
|
|
"exceptiongroup==1.2.2",
|
|
|
|
"idna==3.10",
|
|
|
|
"iniconfig==2.0.0",
|
|
|
|
"lazy-object-proxy==1.10.0",
|
|
|
|
"mccabe==0.7.0",
|
|
|
|
"mypy-extensions==1.0.0",
|
|
|
|
"packaging==24.2",
|
|
|
|
"pathspec==0.12.1",
|
|
|
|
"platformdirs==4.3.6",
|
|
|
|
"pluggy==1.5.0",
|
|
|
|
"py==1.11.0",
|
2025-02-04 20:02:43 +00:00
|
|
|
"pyparsing==3.2.1",
|
2025-01-17 00:30:00 +01:00
|
|
|
"requests==2.32.3",
|
|
|
|
"six==1.17.0",
|
|
|
|
"tabulate==0.9.0",
|
|
|
|
"tomli==2.2.1",
|
|
|
|
"tomlkit==0.13.2",
|
|
|
|
"urllib3==2.2.3",
|
|
|
|
"wrapt==1.17.2",
|
|
|
|
]
|
2024-04-27 18:28:14 +01:00
|
|
|
|
2025-01-17 00:30:00 +01:00
|
|
|
[project.scripts]
|
|
|
|
app = "app.main:main"
|
2024-04-27 18:28:14 +01:00
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
black = "^24.4.0"
|
|
|
|
coverage = "^7.5.0"
|
|
|
|
pylint = "^3.1.0"
|
|
|
|
pylint-exit = "^1.2.0"
|
|
|
|
pytest = "^8.1.1"
|
|
|
|
requests-mock = "^1.12.1"
|
|
|
|
|
2025-01-17 00:30:00 +01:00
|
|
|
|
|
|
|
[tool.uv]
|
|
|
|
dev-dependencies = [
|
|
|
|
"black<25.0.0,>=24.4.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 = []
|
2024-04-27 18:28:14 +01:00
|
|
|
[build-system]
|
2025-01-17 00:30:00 +01:00
|
|
|
requires = ["pdm-backend"]
|
|
|
|
build-backend = "pdm.backend"
|