2024-04-27 18:28:14 +01:00
|
|
|
[tool.poetry]
|
2024-04-27 18:43:08 +01:00
|
|
|
name = "ipilot"
|
2024-04-27 18:28:14 +01:00
|
|
|
version = "1.3.0"
|
|
|
|
description = "IP Information Lookup Tool"
|
|
|
|
authors = ["Luke Tainton <luke@tainton.uk>"]
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
2024-04-27 18:43:08 +01:00
|
|
|
app = "ipilot.main:main"
|
2024-04-27 18:28:14 +01:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.8"
|
2024-07-22 05:56:16 +00:00
|
|
|
astroid = "3.2.4"
|
2024-08-07 00:34:00 +00:00
|
|
|
attrs = "24.2.0"
|
2024-09-02 00:10:58 +00:00
|
|
|
certifi = "2024.8.30"
|
2024-10-10 00:14:06 +00:00
|
|
|
charset-normalizer = "3.4.0"
|
2024-04-27 18:28:14 +01:00
|
|
|
click = "8.1.7"
|
2024-09-30 00:56:32 +00:00
|
|
|
dill = "0.3.9"
|
2024-07-15 00:37:01 +00:00
|
|
|
exceptiongroup = "1.2.2"
|
2024-09-16 10:44:37 +00:00
|
|
|
idna = "3.10"
|
2024-04-27 18:28:14 +01:00
|
|
|
iniconfig = "2.0.0"
|
|
|
|
lazy-object-proxy = "1.10.0"
|
|
|
|
mccabe = "0.7.0"
|
|
|
|
mypy-extensions = "1.0.0"
|
2024-11-11 00:56:14 +00:00
|
|
|
packaging = "24.2"
|
2024-04-27 18:28:14 +01:00
|
|
|
pathspec = "0.12.1"
|
2024-09-18 00:43:09 +00:00
|
|
|
platformdirs = "4.3.6"
|
2024-04-27 18:28:14 +01:00
|
|
|
pluggy = "1.5.0"
|
|
|
|
py = "1.11.0"
|
2024-08-26 09:25:40 +00:00
|
|
|
pyparsing = "3.1.4"
|
2024-05-30 00:56:46 +00:00
|
|
|
requests = "2.32.3"
|
2024-04-27 18:28:14 +01:00
|
|
|
six = "1.16.0"
|
|
|
|
tabulate = "0.9.0"
|
2024-11-12 04:57:19 +00:00
|
|
|
tomli = "2.1.0"
|
2024-08-15 00:36:39 +00:00
|
|
|
tomlkit = "0.13.2"
|
2024-09-13 01:03:32 +00:00
|
|
|
urllib3 = "2.2.3"
|
2024-04-27 18:28:14 +01:00
|
|
|
wrapt = "1.16.0"
|
|
|
|
|
|
|
|
[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"
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|