-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
22 lines (18 loc) · 647 Bytes
/
Copy pathpyproject.toml
File metadata and controls
22 lines (18 loc) · 647 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[tool.poetry]
name = "graphviz-py"
version = "1.0.8"
description = "Allows Python code execution inside of graphviz diagrams."
authors = ["Alwin Schuster <contact@alwinschuster.at>"]
license = 'MPL-2.0'
homepage = "https://github.com/Alwinator/graphviz-py"
repository = "https://github.com/Alwinator/graphviz-py"
documentation = "https://github.com/Alwinator/graphviz-py"
readme = "README.md"
keywords = ["graphviz", "dot", "python", "graphviz-python", "gv"]
[tool.poetry.dependencies]
python = ">=3.8.0"
[tool.poetry.scripts]
graphviz-py = "graphviz_py.cli:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"