-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (73 loc) · 2.24 KB
/
pyproject.toml
File metadata and controls
82 lines (73 loc) · 2.24 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",
]
build-backend = "setuptools.build_meta"
[project]
authors = [
{name = "Rocky Bernstein", email = "rb@dustyfeet.com"},
]
name = "trepanxpy"
description = "GDB-like Debugger for x-python in the Trepan family"
dependencies = [
"decompyle3 >= 3.9.2",
"term-background >= 1.0.5",
"trepan3k >= 1.5.0",
"uncompyle6 >= 3.9.3",
"x-python >= 1.5.3",
]
readme = {file = "README.md", content-type = "text/markdown"}
license = "GPL-3.0-or-later"
keywords = ["Python bytecode", "bytecode", "disassembler"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Debuggers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.0",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"flake8",
"pre-commit",
"pytest",
]
full = [
"prompt-toolkit", # Alternate interface, akin to GNU Readline
]
[project.scripts]
trepan-xpy = "trepanxpy.__main__:main"
[project.urls]
Homepage = "https://pypi.org/project/trepan-xpy/"
Downloads = "https://github.com/Trepan-Debuggers/trepan-xpy/releases"
[tool.pyright]
include = ["trepanxpy"]
# exclude = []
ignore = ["dist", "docs", "tmp", ".cache"]
# defineConstant = { DEBUG = true }
# stubPath = "src/stubs"
[tool.setuptools]
packages = [
"trepanxpy",
"trepanxpy.processor",
]
[tool.setuptools.dynamic]
version = {attr = "trepanxpy.version.__version__"}