-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (39 loc) · 1.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
[tool.poetry]
name = "ddebug"
version = "0.4.8"
description = "python library with a set of tools for simple debugging of python programs"
authors = ["matan h <matan.honig2@gmail.com>"]
license = "MIT"
readme = "readme.md"
homepage = "https://github.com/matan-h/ddebug"
# repository = "https://github.com/matan-h/ddebug"
# documentation = "https://github.com/matan-h/ddebug"
keywords = [
"ddebug",
"debug",
"simple",
"quick",
"easy",
"dd",
"debuging"
]
[tool.poetry.dependencies]
python = "^3.7.12"
# snoop = ">=0.3,<0.5" # main require
snoop = "^0.4.1" # main require
icecream = "^2.1.2" # main require
rich = "^12.0.0" # main require
friendly-traceback = "^0.5.46" # dd-traceback errors require
# optional
watchpoints = "^0.2.5" # watch require
deepdiff = "^5.8.1" # dd.diff require
pdbr = "^0.7.1" # post pdb require
inputimeout = "^1.0.4" # post pdb require
[tool.poetry.extras]
full = ["watchpoints", "deepdiff", "pdbr", "inputimeout"]
no-pdbr = ["watchpoints","deepdiff"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry.urls]
issues = "https://github.com/matan-h/ddebug/issues"