mirror of https://github.com/mingrammer/diagrams
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.1 KiB
54 lines
1.1 KiB
[project]
|
|
name = "diagrams"
|
|
version = "0.25.0"
|
|
description = "Diagram as Code"
|
|
authors = [{ name = "mingrammer", email = "mingrammer@gmail.com" }]
|
|
requires-python = "~=3.9"
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
dependencies = [
|
|
"graphviz>=0.13.2,<0.21.0",
|
|
"jinja2>=2.10,<4.0",
|
|
"typed-ast>=1.5.5,<2 ; python_version<'3.8'",
|
|
"pre-commit>=4.0.1,<5",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://diagrams.mingrammer.com"
|
|
Repository = "https://github.com/mingrammer/diagrams"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest~=8.3",
|
|
"pylint~=3.3",
|
|
"rope~=1.13",
|
|
"isort~=6.0",
|
|
"black~=24.4",
|
|
]
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
include = ["resources/**/*"]
|
|
|
|
[tool.poetry.scripts]
|
|
diagrams="diagrams.cli:main"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9"
|
|
graphviz = ">=0.13.2,<0.21.0"
|
|
jinja2 = ">=2.10,<4.0"
|
|
typed-ast = {version="^1.5.5", markers="python_version<'3.8'"}
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = "^8.4"
|
|
pylint = "^3.3"
|
|
rope = "^1.13"
|
|
isort = "^6.0"
|
|
black = "^24.4"
|
|
pre-commit = "^4.3.0"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
include = ["resources/**/*"]
|
|
|
|
[tool.black]
|
|
line-length=120
|