Skip to content

Commit b276929

Browse files
committed
add (minimal) project setup to allow consumption as module
adds dependency to (latest) scapy version omits the regular uv folder structure - testing with proposal of astral-sh/uv#6293
1 parent 89bc103 commit b276929

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

pyproject.toml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
[project]
2+
name = "scapy-cip-enip"
3+
version = "0.1.0"
4+
description = "EtherNet/IP+CIP dissector for Scapy"
5+
readme = "README.rst"
6+
requires-python = ">=3.12" # check valid minimum version
7+
dependencies = [
8+
"scapy==2.5.0",
9+
]
10+
11+
[build-system]
12+
requires = ["hatchling"]
13+
build-backend = "hatchling.build"
14+
15+
[tool.hatch.build.targets.wheel]
16+
packages = ["."]

0 commit comments

Comments
 (0)