-
Notifications
You must be signed in to change notification settings - Fork 520
/
Copy pathpyproject.toml
86 lines (78 loc) · 2.14 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
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
83
84
85
86
#-------------------------------------------------------------------------------
# pyelftools: pyproject.toml
#
# Setup/installation script.
#
# Eli Bendersky ([email protected])
# This code is in the public domain
#-------------------------------------------------------------------------------
[build-system]
requires = ["setuptools >= 46.4.0"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "pyelftools"
requires-python = ">= 3.9"
authors = [
{name = "Eli Bendersky", email = "[email protected]"},
]
maintainers = [
{name = "Eli Bendersky", email = "[email protected]"},
]
description = "Library for analyzing ELF files and DWARF debugging information"
readme = "README.rst"
license = {text = "Public domain"}
#license = {file = "LICENSE"}
#license-files = ["LICENSE"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: Public Domain",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: File Formats",
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Debuggers",
"Topic :: Software Development :: Disassemblers",
]
[project.urls]
Homepage = "https://github.com./eliben/pyelftools"
Repository = "https://github.com./eliben/pyelftools.git"
Issues = "https://github.com./eliben/pyelftools/issues"
[dependency-groups]
typing = ["mypy[reports]", "pyright", "typeguard"]
[tool.setuptools]
packages = [
"elftools",
"elftools.elf",
"elftools.common",
"elftools.dwarf",
"elftools.ehabi",
"elftools.construct",
"elftools.construct.lib",
]
script-files = [
"scripts/readelf.py",
]
platforms = [
'Cross Platform',
]
[tool.setuptools.dynamic]
version = {attr = "elftools.__version__"}
[tool.setuptools.package-data]
elftools = ["py.typed"]
[tool.mypy]
error_summary = false
disallow_any_generics = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
warn_redundant_casts = true
warn_unused_ignores = true
# html_report = "mypy"
packages = "elftools"
# junit_xml = "mypy.junit.xml"
junit_format = "per_file"
[tool.pyright]
include = [
"elftools",
]