Warning, /acts/pyproject.toml is written in an unsupported language. File is not indexed.
0001 [build-system]
0002 requires = ["scikit-build-core"]
0003 build-backend = "scikit_build_core.build"
0004
0005 [project]
0006 name = "pyacts"
0007 dynamic = ["version", "readme"]
0008 license = "MPL-2.0"
0009 license-files = ["LICENSE"]
0010
0011 [project.urls]
0012 Homepage = "https://acts-project.github.io"
0013 Repository = "https://github.com/acts-project/acts"
0014
0015 [tool.scikit-build]
0016 wheel.packages = [] # Manage installation with cmake
0017 wheel.exclude = ["**.a", "**.sh", "**.cmake", "**.hpp"]
0018 build-dir = "build/{wheel_tag}"
0019 build.verbose = true
0020 cmake.args = ["--preset=python-wheel"]
0021 logging.level = "DEBUG"
0022 metadata.readme.provider = "scikit_build_core.metadata.fancy_pypi_readme"
0023
0024 # Get version from file dynamically
0025 [tool.scikit-build.metadata.version]
0026 provider = "scikit_build_core.metadata.regex"
0027 input = "./version_number"
0028 regex = "^([0-9]+).([0-9]+).([0-9]+)$"
0029 result = "{0}.{1}.{2}"
0030
0031 [tool.hatch.metadata.hooks.fancy-pypi-readme]
0032 content-type = "text/markdown"
0033
0034 [[tool.hatch.metadata.hooks.fancy-pypi-readme.fragments]]
0035 text = """
0036 <a href="https://github.com/acts-project/acts">
0037 <img src="https://github.com/acts-project/acts/blob/main/docs/figures/acts_logo_colored.svg" alt="ACTS logo">
0038 </a>
0039 """
0040
0041 [[tool.hatch.metadata.hooks.fancy-pypi-readme.fragments]]
0042 path = "README.md"
0043 end-before = "## Quick start"