-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: add a mark for setuptools tests (#93)
- Loading branch information
Showing
4 changed files
with
15 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ name = "scikit_build_core" | |
authors = [ | ||
{ name = "Henry Schreiner", email = "[email protected]" }, | ||
] | ||
description = "PEP 517 builder for Scikit-Build" | ||
description = "Build backend for CMake based projects" | ||
readme = "README.md" | ||
requires-python = ">=3.7" | ||
classifiers = [ | ||
|
@@ -25,7 +25,8 @@ classifiers = [ | |
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Development Status :: 3 - Alpha", | ||
"Development Status :: 4 - Beta", | ||
"Typing :: Typed", | ||
] | ||
|
||
dynamic = ["version"] | ||
|
@@ -37,11 +38,9 @@ dependencies = [ | |
"tomli; python_version<'3.11'", | ||
"typing_extensions >=3.7; python_version<'3.8'", | ||
] | ||
# Note: for building wheels and sdists, there are also | ||
# additional dependencies: | ||
# pyproject_metadata, distlib, and pathspec | ||
# And cmake and possibly ninja if those are not already present (user | ||
# controllable) | ||
# Note: for building wheels and sdists, there are also additional dependencies | ||
# in the pyproject extra. And cmake and possibly ninja if those are not already | ||
# present (user controllable) | ||
|
||
[project.optional-dependencies] | ||
pyproject = [ | ||
|
@@ -92,6 +91,7 @@ Examples = "https://github.com/scikit-build/scikit-build-core/tree/main/tests/pa | |
cmake_extensions = "scikit_build_core.setuptools.extension:cmake_extensions" | ||
cmake_source_dir = "scikit_build_core.setuptools.extension:cmake_source_dir" | ||
|
||
|
||
[tool.hatch] | ||
build.exclude = ["extern"] | ||
version.source = "vcs" | ||
|
@@ -120,6 +120,7 @@ markers = [ | |
"compile: Compiles code", | ||
"configure: Configures CMake code", | ||
"integration: Full package build", | ||
"setuptools: Tests setuptools integration", | ||
] | ||
|
||
|
||
|
@@ -162,7 +163,7 @@ profile = "black" | |
master.py-version = "3.7" | ||
reports.output-format = "colorized" | ||
similarities.ignore-imports = "yes" | ||
good-names = ["f",] | ||
good-names = ["f"] | ||
messages_control.disable = [ | ||
"design", | ||
"fixme", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters