-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
33 lines (28 loc) · 1.05 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
[tool.pylint.messages_control]
max-line-length = 140
[tool.poetry]
name = "robotframework-mitmlibrary"
version = "0.2.2"
description = "A Robot Framework library for managing and manipulating HTTP requests and responses using a man-in-the-middle proxy approach. It allows blocking requests, customizing responses, adding delays, and more."
authors = ["Mark <markmoberts@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/MobyNL/robotframework-mitmlibrary"
repository = "https://github.com/MobyNL/robotframework-mitmlibrary"
documentation = "https://mobynl.github.io/robotframework-mitmlibrary/MitmLibraryKeywords.html"
packages = [{ include = "MitmLibrary" }]
[tool.poetry.dependencies]
python = "^3.12"
mitmproxy = "^12.0.1"
robotframework = "^7.1.1"
wheel = "^0.45.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.4"
pytest-cov = "^6.0.0"
coverage = "^7.6.10"
robotframework-browser = "^19.1.2"
robotframework-requests = "^0.9.7"
setuptools = "^78.1.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"