Added missing requirement
This commit is contained in:
parent
8f4d19c98e
commit
d0564a968f
1
.github/workflows/requirements.txt
vendored
1
.github/workflows/requirements.txt
vendored
|
@ -1,3 +1,4 @@
|
||||||
requests ~= 2.28.0
|
requests ~= 2.28.0
|
||||||
graphviz ~= 0.20.1
|
graphviz ~= 0.20.1
|
||||||
|
dataclasses-json ~= 0.6.2
|
||||||
mypy ~= 1.7.0
|
mypy ~= 1.7.0
|
||||||
|
|
|
@ -14,7 +14,11 @@ authors = [
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.10"
|
requires-python = ">=3.10"
|
||||||
license = { text = "MIT" }
|
license = { text = "MIT" }
|
||||||
dependencies = ["requests ~= 2.28.0", "graphviz ~= 0.20.1"]
|
dependencies = [
|
||||||
|
"requests ~= 2.28.0",
|
||||||
|
"graphviz ~= 0.20.1",
|
||||||
|
"dataclasses-json ~= 0.6.2",
|
||||||
|
]
|
||||||
dynamic = ["version"]
|
dynamic = ["version"]
|
||||||
|
|
||||||
[project.scripts]
|
[project.scripts]
|
||||||
|
|
Loading…
Reference in a new issue