-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
36 lines (32 loc) · 927 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cozy-re"
version = "1.5.2"
authors = [
{ name="Caleb Helbling", email="chelbling@draper.com" },
{ name="Graham Leach-Krouse", email="gleach-krouse@draper.com"},
]
description = "The Cozy Comparative Symbolic Evaluation Engine"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"angr == 9.2.130",
"networkx == 3.3",
"claripy == 9.2.130",
"portion == 2.4.2",
"textual == 0.86.1",
]
[project.urls]
"Homepage" = "https://github.com/draperlaboratory/cozy"
"Bug Tracker" = "https://github.com/draperlaboratory/cozy/issues"
[tool.hatch.build.targets.wheel]
packages = ["cozy"]
[tool.hatch.build.targets.wheel.force-include]
"./cozy-viz" = "cozy-viz"