-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (26 loc) · 778 Bytes
/
pyproject.toml
File metadata and controls
31 lines (26 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[tool.poetry]
name = "specifipy"
version = "0.5.1"
description = "Python package for auto-generating code diagrams"
authors = ["Bartosz Budzyński <hi@bartosz.blog>"]
[tool.poetry.dependencies]
python = "^3.9"
snakemd = "^0.11.0"
docstring-parser = "^0.15"
py-d2 = "1.0.0"
javalang = "0.13.0"
tree-sitter = ">=0.23.0"
tree-sitter-typescript = ">=0.23.0"
[tool.poetry.scripts]
specifipy = "specifipy.cli:main"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
[tool.poetry.group.dev.dependencies]
pre-commit = ">=3.8.0,<4.0.0"
# Force safe versions for known vulnerable transitive deps in the pre-commit toolchain.
virtualenv = ">=20.26.6"
filelock = ">=3.15.4"
setuptools = ">=70.0.0"
[build-system]
requires = ["poetry-core>=1.7.0"]
build-backend = "poetry.core.masonry.api"