forked from py-cov-action/python-coverage-comment-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (32 loc) · 895 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
[tool.black]
target-version = ["py310"]
[tool.poetry]
name = "coverage-comment"
version = "0.0.0"
description = "Publish diff coverage report as PR comment, and create a coverage badge to display on the readme, for Python projects."
authors = ["Joachim Jablon <[email protected]>"]
license = "MIT License"
packages = [
{ include = "coverage_comment" },
]
include = ["coverage_comment/default.md.j2"]
[tool.poetry.scripts]
coverage_comment = 'coverage_comment.main:main'
[tool.poetry.dependencies]
python = "^3.10"
coverage = {version = "*", extras = ["toml"]}
diff-cover = "*"
httpx = {version = "*", extras = ["http2"]}
Jinja2 = "*"
[tool.poetry.group.dev.dependencies]
black = "*"
flake8 = "*"
isort = "*"
mypy = "*"
pytest = "*"
pytest-cov = "^4.0.0"
pytest-mock = "*"
tenacity = "^8.1.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"