From 5e800058c2ba8d263f963d9d4dea34e620cdc859 Mon Sep 17 00:00:00 2001 From: Kent Ickler <29710634+Relkci@users.noreply.github.com> Date: Tue, 12 May 2026 15:51:15 -0600 Subject: [PATCH] Initialize pyproject.toml with project details Add configuration for build system and project metadata. --- pyproject.toml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index e69de29..e31f928 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -0,0 +1,36 @@ +[build-system] +requires = ["setuptools>=61.0", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "icmp-timecheck" +version = "1.1.1" +description = "Convert ICMP Timestamp replies into human‑readable times and report clock offsets." +readme = "README.md" +requires-python = ">=3.8" +license = { text = "MIT" } +authors = [ + { name = "Defensive Origins" } +] +keywords = ["icmp", "timestamp", "scapy", "ntp", "network"] +classifiers = [ + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3 :: Only", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + "Topic :: Internet", + "Topic :: Security" +] +dependencies = [ + "scapy>=2.4.0" +] + +[project.urls] +Homepage = "https://github.com/DefensiveOrigins/icmp-timestamp" +Repository = "https://github.com/DefensiveOrigins/icmp-timestamp" + +[project.scripts] +timecheck = "timecheck:main" + +[tool.setuptools] +py-modules = ["timecheck"]