-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
43 lines (38 loc) · 1.04 KB
/
pyproject.toml
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
[project]
name = "scapy-gptp"
version = "0.2.0"
description = "scapy layer definition and tools for GPTP (IEEE 802.1as)"
authors = [
{ name = "Christoph Weinsheimer", email = "weinshec@holodeck2.de" }
]
license = "GPL-2.0"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
keywords = ["scapy", "PTP", "gPTP", "802.1as"]
requires-python = ">=3.9"
dependencies = [
"scapy>=2.5",
]
[project.urls]
Homepage = "https://github.com/weinshec/scapy-gptp"
Repository = "https://github.com/weinshec/scapy-gptp"
Issues = "https://github.com/weinshec/scapy-gptp/issues"
[tool.uv]
dev-dependencies = [
"mypy>=1.13.0",
"pytest>=8.3.3",
"ruff>=0.7.3",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/gptp"]
[tool.hatch.build.targets.sdist]
packages = ["src/gptp"]