-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (54 loc) · 1.98 KB
/
pyproject.toml
File metadata and controls
61 lines (54 loc) · 1.98 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
[build-system]
requires = [
"hatchling >= 1.4",
"cmake >= 3.20, < 4.3"
]
build-backend = "hatchling.build"
[project]
name = "pytest-cmake"
version = "1.3.0"
description = "Provide CMake module for Pytest"
readme = "README.md"
requires-python = ">=3.7, <4"
license = {file = "LICENSE"}
keywords = ["cmake", "pytest", "development"]
authors = [
{name = "Jeremy Retailleau", email = "jeremy.retailleau@gmail.com" }
]
dependencies = [
"pytest >= 4, < 10",
]
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[project.scripts]
pytest-cmake = "pytest_cmake.__main__:main"
[project.urls]
Documentation = "https://python-cmake.github.io/pytest-cmake"
Repository = "https://github.com/python-cmake/pytest-cmake"
Issues = "https://github.com/python-cmake/pytest-cmake/issues"
Changelog = "https://python-cmake.github.io/pytest-cmake/release/release_notes.html"
[tool.hatch.build.hooks.custom]
require-runtime-dependencies = true
path = "build_config.py"
[tool.hatch.build.targets.wheel.shared-data]
"build/PytestConfig.cmake" = "share/Pytest/cmake/PytestConfig.cmake"
"build/PytestConfigVersion.cmake" = "share/Pytest/cmake/PytestConfigVersion.cmake"
"cmake/FindPytest.cmake" = "share/Pytest/cmake/FindPytest.cmake"
"cmake/PytestAddTests.cmake" = "share/Pytest/cmake/PytestAddTests.cmake"
[tool.hatch.build.targets.wheel]
packages = ["src/pytest_cmake"]
only-include = ["src/pytest_cmake", "*.cmake"]
[tool.hatch.build.targets.sdist]
only-include = ["src/pytest_cmake", "cmake", "build_config.py"]