-
Notifications
You must be signed in to change notification settings - Fork 231
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
67 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,3 +14,6 @@ traceback*txt | |
.coverage | ||
coverage.xml | ||
tags | ||
|
||
doc/_build | ||
doc/README.rst |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,61 @@ | ||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[project] | ||
name = "pudb" | ||
version = "2024.1.2" | ||
description = "A full-screen, console-based Python debugger" | ||
readme = "README.rst" | ||
license = "MIT" | ||
requires-python = "~=3.8" | ||
authors = [ | ||
{ name = "Andreas Kloeckner", email = "[email protected]" }, | ||
] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Environment :: Console", | ||
"Environment :: Console :: Curses", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Natural Language :: English", | ||
"Operating System :: POSIX", | ||
"Operating System :: Unix", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Topic :: Software Development", | ||
"Topic :: Software Development :: Debuggers", | ||
"Topic :: Software Development :: Quality Assurance", | ||
"Topic :: System :: Recovery Tools", | ||
"Topic :: System :: Software Distribution", | ||
"Topic :: Terminals", | ||
"Topic :: Utilities", | ||
] | ||
dependencies = [ | ||
"jedi>=0.18,<1", | ||
"packaging>=20.0", | ||
"pygments>=2.7.4", | ||
"urwid>=2.4", | ||
"urwid_readline", | ||
] | ||
|
||
[project.optional-dependencies] | ||
completion = [ | ||
"shtab", | ||
] | ||
|
||
[project.scripts] | ||
pudb = "pudb.run:main" | ||
|
||
[tool.hatch.build.targets.sdist] | ||
include = [ | ||
"/pudb", | ||
"/doc", | ||
"/try-the-debugger.sh", | ||
"/debug_me.py", | ||
"/examples", | ||
] | ||
|
||
[tool.ruff] | ||
preview = true | ||
|
||
|