-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (23 loc) · 908 Bytes
/
pyproject.toml
File metadata and controls
29 lines (23 loc) · 908 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
29
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "buildkite-test-collector"
version = "1.4.2"
description = "Buildkite Test Engine collector"
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
authors = [{ name = "Buildkite", email = "support@buildkite.com" }]
classifiers = ["License :: OSI Approved :: MIT License", "Framework :: Pytest"]
dependencies = ["requests>=2", "pytest>=7", "filelock>=3"]
[project.optional-dependencies]
dev = ["mock>=4", "check-manifest", "twine", "responses", "pylint"]
[project.urls]
Homepage = "https://github.com/buildkite/test-collector-python"
[project.entry-points.pytest11]
buildkite-test-collector = "buildkite_test_collector.pytest_plugin"
[tool.hatch.build.targets.wheel]
packages = ["src/buildkite_test_collector"]
[tool.hatch.build.targets.sdist]
include = ["/src", "/tests", "/README.md", "/LICENSE.txt"]