-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathpyproject.toml
58 lines (50 loc) · 1.37 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
48
49
50
51
52
53
54
55
56
57
58
[tool.poetry]
name = "vardbg"
version = "0.11.7"
description = "A simple Python debugger and profiler that generates animated visualizations of program flow."
authors = ["Danny Lin <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/CCExtractor/vardbg"
documentation = "https://github.com/CCExtractor/vardbg/blob/master/README.md"
# Search info
keywords = ["debug", "debugger", "visualization"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Topic :: Software Development :: Debuggers"
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/CCExtractor/vardbg/issues"
[tool.poetry.dependencies]
python = "^3.6"
dictdiffer = "^0.8.1"
jsonpickle = ">=1.2,<3.0"
opencv-python = "^4.1.2"
pillow = ">=7,<9"
sortedcontainers = "^2.1.0"
toml = "^0.10.0"
pygments = "^2.5.2"
click = "^7.0"
colorama = "^0.4.3"
imageio = "^2.6.1"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
pre-commit = "^2.1.1"
isort = "^5.8.0"
[tool.poetry.scripts]
vardbg = "vardbg.main:main"
[tool.black]
line-length = 120
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 120
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"