diff --git a/pyproject.toml b/pyproject.toml index 3f22ac6..46957ee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "diagrams" -version = "0.24.0" +version = "0.24.1" description = "Diagram as Code" license = "MIT" authors = ["mingrammer "] @@ -9,18 +9,21 @@ homepage = "https://diagrams.mingrammer.com" repository = "https://github.com/mingrammer/diagrams" include = ["resources/**/*"] +[tool.poetry.scripts] +diagrams="diagrams.cli:main" + [tool.poetry.dependencies] -python = "^3.7" +python = "^3.8" graphviz = ">=0.13.2,<0.21.0" jinja2 = ">=2.10,<4.0" -typed-ast = { version = "^1.5.5", markers = "python_version < '3.8'} +typed-ast = {version="^1.5.5", markers="python_version<'3.8'"} [tool.poetry.dev-dependencies] -pytest = "^7.3" -pylint = "^2.7" -rope = "^0.14.0" -isort = "^4.3" -black = "^22.12.0" +pytest = "^8.2" +pylint = "^3.2" +rope = "^1.13" +isort = "^5.13" +black = "^24.4" [tool.black] -line-length = 120 +line-length=120 \ No newline at end of file