-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (45 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
53 lines (45 loc) · 1.47 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
[build-system]
requires = [
"scikit-build-core>=0.11.6",
"pybind11==3.0.1"
]
build-backend = "scikit_build_core.build"
[project]
dynamic = ["readme"]
name = "asmc-preparedecoding"
version = "2.2.5"
description = "Prepare decoding quantities for ASMC & FastSMC"
authors = [
{ name = "PalamaraLab (https://palamaralab.github.io/)" }
]
requires-python = ">=3.9"
dependencies = [
'numpy',
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3 :: Only",
"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",
]
[tool.scikit-build]
minimum-version = "build-system.requires"
build.verbose = true
cmake.build-type = "Release"
build.targets = ["preparedecoding_python_bindings"]
wheel.packages = ["src/asmc"]
metadata.readme.provider = "scikit_build_core.metadata.fancy_pypi_readme"
[tool.scikit-build.cmake.define]
PREPARE_DECODING_PYTHON_BINDINGS = "ON"
PREPARE_DECODING_BUILDING_FROM_PYPROJECT = "ON"
[tool.hatch.metadata.hooks.fancy-pypi-readme]
content-type = "text/markdown"
[[tool.hatch.metadata.hooks.fancy-pypi-readme.fragments]]
path = "PyPI_README.md"
[[tool.hatch.metadata.hooks.fancy-pypi-readme.fragments]]
path = "RELEASE_NOTES.md"