-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
40 lines (34 loc) · 971 Bytes
/
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
[tool.poetry]
name = "architecture"
version = "0.1.0"
description = "Architecture diagrams for infrastructure"
authors = ["Siddharth Rawat <rawat.sid@northeastern.edu>"]
license = "MIT"
readme = "README.md"
[tool.semantic_release]
version_variables = [
"src/__init__.py:__version__"
]
version_toml = [
"pyproject.toml:tool.poetry.version"
]
major_on_zero = true
commit_message = "chore(release): {version} [skip ci]\n\nAutomatically generated by python-semantic-release"
commit_parser = "angular"
branch = "master"
upload_to_release = true
build_command = "pip install poetry && poetry build"
[tool.semantic_release.remote]
name = "origin"
type = "github"
ignore_token_for_push = false
[tool.semantic_release.remote.token]
env = "GH_TOKEN"
[tool.poetry.dependencies]
python = "^3.12"
diagrams = "^0.23.4"
[tool.poetry.group.dev.dependencies]
python-semantic-release = "^8.5.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"