-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (25 loc) · 960 Bytes
/
Copy pathpyproject.toml
File metadata and controls
28 lines (25 loc) · 960 Bytes
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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools"]
[project]
name = "seapie"
description = "A Python debugger that drops you into a live >>> prompt at breakpoints"
authors = [{name = "Markus Hirsimäki"}]
license = {text = "The Unlicense"}
readme = "readme.md"
dynamic = ["version"]
keywords = ["debugger", "debug", "debugging", "breakpoint", "pdb", "repl", "interactive", "trace", "stepping", "seapie"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"License :: OSI Approved :: The Unlicense (Unlicense)",
"Operating System :: OS Independent"
]
[project.urls]
homepage = "https://github.com/hirsimaki-markus/seapie"
issues = "https://github.com/hirsimaki-markus/seapie/issues"
license = "https://choosealicense.com/licenses/unlicense/"
[tool.setuptools]
packages = ["seapie"]
package-dir = { "" = "src" }
dynamic = { version = {attr = "seapie.__version__" } }