-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (32 loc) · 945 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
37
38
39
[project]
name = "umbrella-py"
version = "0.0.5"
description="ObjC and Swift application binary interface (ABI) to inspect static runtime information. (w. Class-Dump)"
authors = [
{ name="MatrixEditor", email="not@supported.com" },
]
readme = "README.md"
classifiers = [
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering :: Information Analysis'
]
dependencies = [
"lief",
"construct",
"capstone",
"construct-dataclasses",
"pygments",
]
[project.urls]
"Homepage" = "https://github.com/MatrixEditor/umbrella-py"
"API-Docs" = "https://matrixeditor.github.io/umbrella-py"
[tool.setuptools.packages.find]
where = ["."]
include = ["umbrella*"]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"