-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (40 loc) · 959 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
44
45
46
47
48
49
[tool.poetry]
authors = ["SpikeeLabs"]
description = "A simple toolkit to aggregate Gitflow tools and simplify their error handling"
name = "gitflow_toolbox"
version = "0.0.1"
include = ["README.md", "CHANGELOG.md"]
packages = [{include = "gitflow_toolbox"}]
[tool.poetry.scripts]
sample = "gitflow_toolbox.sample:cli"
[tool.poetry.dependencies]
python = ">=3.9.0,<4"
GitPython = "^3.1"
click = "^8.1"
python-dotenv = "^0.20"
python-gitlab = "^3.6"
[tool.poetry.dev-dependencies]
bandit = "^1.7"
black = "^22.3"
coverage = "^5.5"
flake8 = "^3.9"
parameterized = "^0.8"
pre-commit = "^2.16"
pylama = "^7.7"
pylint = "^2.12"
tblib = "^1.7"
toml = "^0.10"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool.black]
include = '\.pyi?$'
line-length = 120
[tool.coverage.run]
command_line = "-m unittest discover -v"
source = ["gitflow_toolbox"]
[tool.coverage.report]
fail_under = 100
omit = [
'*/tests*',
]