Skip to content

Commit 1124f79

Browse files
committed
Get ready for release 1.2.10
1 parent 423fefa commit 1124f79

4 files changed

Lines changed: 81 additions & 33 deletions

File tree

NEWS.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
1.2.10 2024-05-17
2+
=================
3+
4+
* Revise for newer `xdis`.
5+
* Go over disassembly (more work is needed)
6+
* Add `set/show asmfmt`, and `set/show styles` commands.
7+
* Go over terminal detection.
8+
* Tolerate GraalVM
9+
* Remove use of `nosetest` in master branch
10+
* Modernize code using black and isort; convert to fstring use.
11+
* Tokerate 3.11 and 3.12; git branches handle older Python versions
12+
13+
114
1.2.9 2023-05-27
215
================
316

pyproject.toml

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
[build-system]
2+
requires = [
3+
"setuptools>=61.2",
4+
]
5+
6+
build-backend = "setuptools.build_meta"
7+
8+
[project]
9+
authors = [
10+
{name = "Rocky Bernstein", email = "rb@dustyfeet.com"},
11+
]
12+
13+
name = "trepan"
14+
description = "Python cross-version byte-code library and disassembler"
15+
dependencies = [
16+
"columnize >= 0.3.10",
17+
"pyficache >= 2.3.0",
18+
"xdis >= 6.0.3,<6.2.0",
19+
"pygments >= 2.2.0",
20+
"spark_parser >= 1.8.9, <1.9.0",
21+
"tracer >= 0.3.2",
22+
"term-background >= 1.0.1",
23+
]
24+
readme = "README.rst"
25+
license = {text = "GPL"}
26+
keywords = ["Python bytecode", "bytecode", "disassembler"]
27+
classifiers = [
28+
"Development Status :: 5 - Production/Stable",
29+
"Environment :: Console",
30+
"Intended Audience :: Developers",
31+
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
32+
"Operating System :: OS Independent",
33+
"Programming Language :: Python",
34+
"Topic :: Software Development :: Debuggers",
35+
"Topic :: Software Development :: Libraries :: Python Modules",
36+
"Programming Language :: Python :: 3.2",
37+
"Programming Language :: Python :: 3.3",
38+
"Programming Language :: Python :: 3.4",
39+
"Programming Language :: Python :: 3.5",
40+
"Programming Language :: Python :: 3.6",
41+
"Programming Language :: Python :: 3.7",
42+
"Programming Language :: Python :: 3.8",
43+
"Programming Language :: Python :: 3.9",
44+
"Programming Language :: Python :: 3.10",
45+
"Programming Language :: Python :: 3.11",
46+
"Programming Language :: Python :: 3.12",
47+
"Programming Language :: Python :: Implementation :: PyPy",
48+
]
49+
dynamic = ["version"]
50+
51+
[project.urls]
52+
Homepage = "https://pypi.org/project/trepan3k/"
53+
Downloads = "https://github.com/rocky/python-trepan3k/releases"
54+
55+
[project.optional-dependencies]
56+
dev = [
57+
"flake8",
58+
"pre-commit",
59+
"pytest",
60+
]
61+
62+
[project.scripts]
63+
trepan3k = "trepan.__main__:main"
64+
trepan3kc = "trepan.client:main"
65+
66+
[tool.setuptools.dynamic]
67+
version = {attr = "trepan.version.__version__"}

setup.py

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -13,31 +13,11 @@
1313
print(mess)
1414
raise Exception(mess)
1515

16-
# Get the package information used in setup().
17-
from __pkginfo__ import (
18-
__version__,
19-
author,
20-
author_email,
21-
classifiers,
22-
entry_points,
23-
install_requires,
24-
license,
25-
long_description,
26-
modname,
27-
py_modules,
28-
short_desc,
29-
web,
30-
zip_safe,
31-
)
32-
3316
__import__("pkg_resources")
3417

3518
packages = find_packages()
3619

3720
setup(
38-
author=author,
39-
author_email=author_email,
40-
classifiers=classifiers,
4121
data_files=[
4222
(
4323
"trepan/processor/command/help",
@@ -52,17 +32,5 @@
5232
],
5333
)
5434
],
55-
description=short_desc,
56-
entry_points=entry_points,
57-
install_requires=install_requires,
58-
license=license,
59-
long_description=long_description,
60-
long_description_content_type="text/x-rst",
61-
name=modname,
6235
packages=packages,
63-
py_modules=py_modules,
64-
test_suite="nose.collector",
65-
url=web,
66-
version=__version__,
67-
zip_safe=zip_safe,
6836
)

trepan/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
# debugger version number.
66

77
# fmt: off
8-
__version__="1.2.10a0" # noqa
8+
__version__="1.2.10" # noqa

0 commit comments

Comments
 (0)