Skip to content

Commit 3c1aa07

Browse files
committed
bump: up to version 0.25.0
1 parent fb8eac1 commit 3c1aa07

File tree

1 file changed

+29
-6
lines changed

1 file changed

+29
-6
lines changed

pyproject.toml

Lines changed: 29 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,32 @@
1-
[tool.poetry]
1+
[project]
22
name = "diagrams"
3-
version = "0.24.4"
3+
version = "0.25.0"
44
description = "Diagram as Code"
5-
license = "MIT"
6-
authors = ["mingrammer <mingrammer@gmail.com>"]
5+
authors = [{ name = "mingrammer", email = "mingrammer@gmail.com" }]
6+
requires-python = "~=3.9"
77
readme = "README.md"
8-
homepage = "https://diagrams.mingrammer.com"
9-
repository = "https://github.com/mingrammer/diagrams"
8+
license = "MIT"
9+
dependencies = [
10+
"graphviz>=0.13.2,<0.21.0",
11+
"jinja2>=2.10,<4.0",
12+
"typed-ast>=1.5.5,<2 ; python_version<'3.8'",
13+
"pre-commit>=4.0.1,<5",
14+
]
15+
16+
[project.urls]
17+
Homepage = "https://diagrams.mingrammer.com"
18+
Repository = "https://github.com/mingrammer/diagrams"
19+
20+
[dependency-groups]
21+
dev = [
22+
"pytest~=8.3",
23+
"pylint~=3.3",
24+
"rope~=1.13",
25+
"isort~=5.13",
26+
"black~=24.4",
27+
]
28+
29+
[tool.hatch.build.targets.sdist]
1030
include = ["resources/**/*"]
1131

1232
[tool.poetry.scripts]
@@ -26,5 +46,8 @@ isort = "^6.0"
2646
black = "^24.4"
2747
pre-commit = "^4.3.0"
2848

49+
[tool.hatch.build.targets.wheel]
50+
include = ["resources/**/*"]
51+
2952
[tool.black]
3053
line-length=120

0 commit comments

Comments
 (0)