-
-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (73 loc) · 1.96 KB
/
pyproject.toml
File metadata and controls
82 lines (73 loc) · 1.96 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
72
73
74
75
76
77
78
79
80
81
82
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "s2e-env"
description = "A command-line tool for administering S2E environments"
authors = [
{name = "Adrian Herrera", email = "adrian.herrera@epfl.ch"}
]
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.6"
classifiers = [
"Intended Audience :: Developers",
"Environment :: Console",
"Programming Language :: Python",
"Topic :: Security",
"Topic :: Software Development",
"Topic :: System",
]
dependencies = [
# S2E engine requirements
"docutils==0.22.2",
"pygments==2.19.2",
# s2e-env requirements
"distro==1.9.0",
"enum34==1.1.10",
"jinja2==3.1.6",
"pefile==2019.4.18",
"psutil==7.1.0",
"pyelftools @ git+https://github.com/S2E/pyelftools.git",
"python-magic==0.4.27",
"pyyaml==6.0.2",
"requests==2.32.5",
"sh==2.2.2",
"termcolor==3.1.0",
"pytrie==0.4.0",
"pwntools==4.3.1",
"protobuf3-to-dict==0.1.5",
"immutables==0.21",
"alive_progress==3.3.0",
"protobuf==3.20.2",
# Dependencies for symchk
# TODO: replace with official release when available
# "pdbparse @ git+https://github.com/faratech/pdbparse.git@5eeff2bc11a5063f130216f929706631e8302be2",
"pefile==2019.4.18",
"construct==2.10.70",
"patool==1.12",
"pyunpack==0.2.2",
# FTP server used by image creation
"pyftpdlib==2.0.1",
"tomli==2.4.1",
]
dynamic = ["version"]
[project.urls]
Homepage = "http://s2e.systems"
Repository = "https://github.com/S2E/s2e-env.git"
[project.optional-dependencies]
test = ["pytest"]
[project.scripts]
s2e = "s2e_env.manage:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
# This will automatically find all packages
[tool.setuptools.package-data]
s2e_env = [
"templates/*",
"templates/plugin_creation/*",
"dat/*",
]
[tool.setuptools.dynamic]
version = {file = "s2e_env/dat/VERSION"}