1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ping3"
description = "A pure python3 version of ICMP ping implementation using raw socket."
requires-python = ">=3"
readme = "README.md"
keywords = ["python3", "ping", "icmp", "socket", "tool"]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Topic :: System :: Networking",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = []
dynamic = ["version"]
[[project.authors]]
name = "Kyan"
email = "kai@kyan001.com"
[project.optional-dependencies]
dev = ["build", "wheel", "pycodestyle"]
[project.urls]
Homepage = "https://github.com/kyan001/ping3"
Changelog = "https://github.com/kyan001/ping3/blob/master/CHANGELOG.md"
"Issue Tracker" = "https://github.com/kyan001/ping3/issues"
"Source Code" = "https://github.com/kyan001/ping3"
[project.scripts]
ping3 = "ping3.command_line:main"
[tool.setuptools]
py-modules = ["ping3"]
[tool.setuptools.dynamic]
version = {attr = "ping3.__version__"}
[tool.setuptools.packages.find]
exclude = ["contrib", "docs", "tests"]
|