-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
55 lines (48 loc) · 1.42 KB
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
48
49
50
51
52
53
54
55
[build-system]
requires = ["maturin>=1.4,<2.0"]
build-backend = "maturin"
[project]
name = "stackforge"
dynamic = ["version"]
description = "High-performance network packet manipulation with Rust and Python"
readme = "README.md"
license = { text = "GPL-3.0-only" }
requires-python = ">=3.13"
keywords = ["networking", "packets", "scapy", "security", "rust"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Programming Language :: Rust",
"Topic :: System :: Networking",
"Topic :: Security",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/LaBackDoor/stackforge"
Repository = "https://github.com/LaBackDoor/stackforge"
Issues = "https://github.com/LaBackDoor/stackforge/issues"
[tool.maturin]
features = ["pyo3/extension-module"]
python-source = "python"
module-name = "stackforge.stackforge"
[dependency-groups]
dev = [
"maturin>=1.4,<2.0",
"pre-commit>=4.5.1",
"pytest>=9.0.2",
"ruff>=0.14.10",
"scapy>=2.7.0",
]
[tool.ruff]
line-length = 100
target-version = "py313"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
[tool.pytest.ini_options]
testpaths = ["tests/python"]
python_files = ["test_*.py"]