-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (61 loc) · 1.54 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (61 loc) · 1.54 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mrma"
version = "0.4.5"
description = "Evidence-driven HTTP trust-boundary experimentation for authorized security research"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.10"
dependencies = [
"httpx>=0.27,<0.29",
"jsonschema>=4.22,<5",
"regex==2026.7.10",
"rich>=13.7,<16",
"tomli>=2.4.1; python_version < '3.11'",
]
authors = [
{ name = "Mohamed Abdelaal (0xmrma)", email = "moabdelaal442004@gmail.com" }
]
keywords = ["security", "http", "trust-boundary", "differential-testing", "research", "cli"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/0xmrma/mrma"
Repository = "https://github.com/0xmrma/mrma"
Issues = "https://github.com/0xmrma/mrma/issues"
[project.scripts]
mrma = "mrma.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["mrma*"]
[tool.setuptools.package-data]
mrma = ["benchmarks/*.json", "schemas/*.json"]
[project.optional-dependencies]
dev = [
"build>=1.2",
"hypothesis>=6.100",
"mypy>=1.11",
"packaging>=24.0",
"pip-audit>=2.7",
"pytest>=8.0",
"pytest-cov>=5.0",
"ruff>=0.6",
"twine>=5.1",
"types-jsonschema>=4.23",
"types-regex>=2025.7",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
addopts = "-q"
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["E501"]