-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (51 loc) · 1.02 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "tango"
authors = [
{name = "Ahmad Hazimeh", email = "[email protected]"},
]
description = "A state-aware fuzzing framework."
requires-python = ">=3.11,<3.12"
dependencies = [
'networkx==3.0',
'nptyping==2.5.0',
'websockets==10.0',
'pydot==1.4.2',
'ipdb==0.13.13',
'aioconsole==0.6.1',
'aiohttp==3.8.4',
'asynctempfile==0.5.0',
]
dynamic = ["version"]
[project.optional-dependencies]
network = [
'scapy==2.4.5',
'pyroute2==0.7.3',
'pyelftools==0.29',
'pyroute2==0.7.3',
'lru-dict==1.1.8',
]
coverage = [
'posix-ipc==1.0.5',
'numpy==1.23.4',
'matplotlib==3.6.2',
'seaborn==0.12.2'
]
inference = [
'scikit-learn==1.2.2',
]
hotplug = [
'asyncinotify==4.0.2'
]
complete = [
'tango[network]',
'tango[coverage]',
'tango[inference]',
'tango[hotplug]',
]
[tool.setuptools]
packages = ["tango"]
[tool.setuptools.dynamic]
version = {attr = "tango.VERSION"}