-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (46 loc) · 1.6 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (46 loc) · 1.6 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
[build-system]
requires = ["scikit-build-core>=0.11", "cython>=3.0", "numpy"]
build-backend = "scikit_build_core.build"
[project]
name = "classy-community"
# Single source of truth for the version. CMakeLists.txt derives the C++
# _VERSION_ macro from this line, so the wheel metadata and the binary can't drift.
version = "26.0.0"
authors = [
{ name="Thomas Tram", email="thomas.tram@phys.au.dk"},
]
description = "Python interface to the C++ community-edition of the cosmological Boltzmann code CLASS"
readme = "README.md"
requires-python = ">=3.10"
license-files = ["COPYING.txt", "LICENSE.txt", "AUTHORS.txt"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/AarhusCosmology/CLASSpp_public"
"Bug Tracker" = "https://github.com/AarhusCosmology/CLASSpp_public/issues"
[tool.scikit-build]
cmake.version = ">=3.21"
wheel.packages = []
# sdist: scikit-build-core includes the source tree minus .gitignore matches.
# Exclude local clutter that is not gitignored; everything the build needs
# (sources, headers, generate_wrapper.py, classy.pyx, bbn/hyrec data,
# CMakeLists.txt) is included by default. /scripts stays in: the sdist ships
# the Makefile, whose classy target calls scripts/montepython_layout.py.
sdist.exclude = [
"/doc",
"/docs",
"/notebooks",
"/test",
"/python",
"/.claude",
"/.github/copilot-instructions.md",
"/new-build-system-kickoff.md",
"/test-greybody-moments",
"/test-photons",
"/CPU",
"*.dSYM",
"*.ipynb",
]