-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
47 lines (39 loc) · 1.06 KB
/
pyproject.toml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[tool.poetry]
name = "mermaid-py"
version = "0.7.0"
description = "Python Interface for the Popular mermaid-js Library, Simplified for Diagram Creation."
authors = ["ouhammmourachid <[email protected]>"]
readme = "README.md"
packages = [{include = "mermaid"}]
exclude = ["mermaid/tests/*.py"]
repository = "https://github.com/ouhammmourachid/mermaid-py"
license = "MIT"
homepage = "https://mermaidpy.vercel.app"
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.31.0"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.4.2,<9.0.0"
pre-commit = ">=3.5,<5.0"
pytest-cov = ">=4.1,<7.0"
coverage = "^7.6.1"
codecov = "^2.1.13"
ruff = ">=0.5.6,<0.9.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[bumpver]
current_version = "0.7.0"
version_pattern = "MAJOR.MINOR.PATCH"
[bumpver.file_patterns]
"pyproject.toml" = [
'version = "{version}"$'
]
"mermaid/__init__.py" = [
'^__version__: str = "{version}"$',
]
# codespell configuration
[tool.codespell]
skip = 'docs/*.json,docs/*.yaml,*.lock'
count = true
quiet-level = 3