-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (25 loc) · 822 Bytes
/
pyproject.toml
File metadata and controls
28 lines (25 loc) · 822 Bytes
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
[build-system]
requires = ["hatchling >= 1.27"]
build-backend = "hatchling.build"
[project]
name = "pytest_circleci_coverage"
version = "0.1.0"
description = " Pytest plugin that works with pytest-cov to generate coverage data for CircleCI's Smarter Testing"
readme = "README.md"
requires-python = ">=3"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Topic :: Software Development :: Testing"
]
license = "MIT"
license-files = ["LICEN[CS]E*"]
dependencies = [
"coverage>=7.10",
]
[project.urls]
Homepage = "https://github.com/circleci/pytest-circleci-coverage"
Issues = "https://github.com/circleci/pytest-circleci-coverage/issues"
[project.entry-points.pytest11]
pytest_circleci_coverage = "pytest_circleci_coverage"