-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (37 loc) · 1002 Bytes
/
pyproject.toml
File metadata and controls
39 lines (37 loc) · 1002 Bytes
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
[project]
name = "python-interactsh"
version = "0.1.0"
description = "Python client library for interacting with Interactsh servers for out-of-band interaction testing"
readme = "README.md"
requires-python = ">=3.12"
authors = [
{name = "Your Name", email = "your.email@example.com"}
]
keywords = ["interactsh", "oast", "security", "testing", "interaction"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Security",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"aiohttp>=3.9.0",
"cryptography>=41.0.0",
"pyyaml>=6.0",
"pydantic>=2.0.0",
"epyxid>=0.3.3",
]
[dependency-groups]
dev = [
"pytest>=8.4.0",
"pytest-asyncio>=0.23.0",
"pyright>=1.1.0",
"ruff>=0.11.13",
]
[tool.pytest.ini_options]
markers = [
"integration",
]