generated from hadenlabs/zsh-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (38 loc) · 932 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
41
42
43
[tool.poetry]
name = "zsh-plugin-name"
version = "0.0.0"
description = "zsh plugin name"
authors = ["Luis Mayta <[email protected]>"]
license = "LGPL-3.0"
readme = "README.md"
repository = "https://github.com/hadenlabs/zsh-plugin-template"
[tool.poetry.dependencies]
python = "^3.8,<3.12"
boto3 = "^1.26.130"
[tool.poetry.group.dev.dependencies]
requests = "^2.28.2"
bridgecrew = "*"
doc8 = "*"
grip = "*"
isort = "*"
mkdocs = "*"
mkdocs-material = "*"
mypy = "*"
parso = "*"
pre-commit = "*"
pycodestyle = "*"
pydocstyle = "*"
pygments = "*"
pylint = "*"
pymdown-extensions = "*"
pytest = ">=6.2.4"
black = "*"
bumpversion = "*"
[tool.poetry.extras]
docs = ["mkdocs", "mkdocs-material"]
[tool.poetry_bumpversion.file."sonar-project.properties"]
search = 'sonar.projectVersion={current_version}'
replace = 'sonar.projectVersion={new_version}'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"