File: pyproject.toml

package info (click to toggle)
python-ping3 4.0.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 196 kB
  • sloc: python: 590; makefile: 3
file content (47 lines) | stat: -rw-r--r-- 1,323 bytes parent folder | download
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"]