-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (68 loc) · 1.88 KB
/
pyproject.toml
File metadata and controls
78 lines (68 loc) · 1.88 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[project]
name = "cs1302-code-visualizer"
version = "0.3.12"
description = "Visualize Java program memory state and output a screenshot."
authors = [
{name = "Gabe Livengood", email = "timothy.livengood@uga.edu"},
{name = "Michael E. Cotterell", email = "mepcott@uga.edu"},
]
maintainers = [
{name = "Michael E. Cotterell", email = "mepcott@uga.edu"},
{name = "Bradley J. Barnes", email = "bjb211@uga.edu"},
]
license = "MIT"
license-files = [
"LICEN[CS]E*",
"cs1302_code_visualizer/frontend/LICENSE",
]
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"colorama>=0.4.6",
"halo>=0.0.31",
"pillow>=11.2.1",
"platformdirs>=4.3.8",
"pydantic>=2.12.5",
"requests>=2.32.4",
"rich>=14.3.3",
"selenium>=4.33.0",
"termcolor>=3.3.0",
]
[tool.cs1302-code-visualizer]
tracer-url = "https://github.com/cs1302uga/cs1302-tracer/releases/download/v1.0.8/code-tracer.jar"
tracer-sha256 = "a067c1c4cb101bcec54b4dc29976a18b77d3ae7b6834269bf48cac2bc795c077"
[project.scripts]
generate_trace = "cs1302_code_visualizer.trace_generator:main"
generate_visualization = "cs1302_code_visualizer.browser_driver:main"
list_breakpoints = "cs1302_code_visualizer.breakpoint_lister:main"
render_image = "cs1302_code_visualizer:main"
[tool.basedpyright]
reportAny = false
reportExplicitAny = false
[tool.ruff]
line-length = 100
indent-width = 4
preview = true
show-fixes = true
[tool.ruff.analyze]
type-checking-imports = true
[tool.ruff.format]
indent-style = "space"
preview = true
quote-style = "double"
skip-magic-trailing-comma = false
[tool.ruff.lint]
extend-select = ["D", "F401", "I", "TID", "Q"]
future-annotations = true
preview = true
[tool.ruff.lint.pycodestyle]
max-line-length = 100
convention = "google"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"basedpyright>=1.39.0",
"ruff>=0.15.9",
]