forked from quarkslab/quokka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (50 loc) · 1.42 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
[build-system]
requires = ["setuptools", "protobuf_distutils"]
build-backend = "setuptools.build_meta"
[project]
name = "quokka-project"
description = "Quokka: A Fast and Accurate Binary Exporter"
authors = [{ name = "Quarkslab", email = "[email protected]" }]
license = { text = "Apache Software License (Apache License, Version 2)" }
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.8"
dependencies = ["capstone>=4.0.2", "networkx>=2.4", "protobuf>=3.12.2"]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/quarkslab/quokka/"
Repository = "https://github.com/quarkslab/quokka/"
Documentation = "https://quarkslab.github.io/quokka/"
"Bug Tracker" = "https://github.com/quarkslab/quokka/issues"
[project.optional-dependencies]
test = [
"pytest",
"pytest-mock",
"pytest-cov",
"coverage[toml]",
"pypcode>=1.1.1",
]
pypcode = ["pypcode>=1.1.1"]
doc = [
"mkdocs",
"mkdocs-material",
"mkdocstrings",
"mkdocstrings-python",
"mkdocs-literate-nav",
"mkdocs-git-revision-date-localized-plugin",
"mkdocs-gen-files",
"mkdocs-simple-hooks",
]
dev = [
"black",
"ipython",
"flake8",
"flake8-black",
"mypy",
"mypy-protobuf",
"nox",
"pypcode>=1.1.1",
]
[tool.setuptools]
packages = ["quokka", "quokka.analysis", "quokka.backends"]
package-dir = { "" = "bindings/python/" }
package-data = { "quokka" = ["*.pyi", "*.typed"] }