mirror of
https://github.com/microsoft/mscclpp.git
synced 2026-05-11 17:00:22 +00:00
Introduces a mscclpp.get_include() in the Python module. The extension module is now named _mscclpp so that we can have Python code in the mscclpp module. Also does some miscellaneous cleanup.
26 lines
523 B
TOML
26 lines
523 B
TOML
# Copyright (c) Microsoft Corporation.
|
|
# Licensed under the MIT license.
|
|
|
|
[build-system]
|
|
requires = ["scikit-build-core"]
|
|
build-backend = "scikit_build_core.build"
|
|
|
|
[project]
|
|
name = "mscclpp"
|
|
version = "0.2.0"
|
|
|
|
[tool.scikit-build]
|
|
cmake.minimum-version = "3.25.0"
|
|
build-dir = "build/{wheel_tag}"
|
|
wheel.packages = ["python/mscclpp"]
|
|
wheel.install-dir = "mscclpp"
|
|
|
|
[tool.scikit-build.cmake.define]
|
|
BUILD_PYTHON_BINDINGS = "ON"
|
|
BUILD_TESTS = "OFF"
|
|
|
|
[tool.black]
|
|
line-length = 120
|
|
target-version = ['py38']
|
|
include = '\.pyi?$'
|