-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
63 lines (55 loc) · 1.86 KB
/
pyproject.toml
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
54
55
56
57
58
59
60
61
62
63
[build-system]
requires = [
"scikit-build-core>=0.10",
"pybind11",
"mypy",
"numpy"
]
build-backend = "scikit_build_core.build"
[tool.scikit-build]
sdist.exclude = ["src/scarabee/_scarabee"]
cmake.build-type = "Release"
[project]
name = "scarabee"
version = "0.1.0"
authors = [
{name = "Hunter Belanger", email = "[email protected]"},
]
description = "A lattice physics code for LWR analysis."
requires-python = ">=3.9"
keywords = ["lattice physics", "reactor physics", "neutron transport", "LWR"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Programming Language :: C++",
"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",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
]
[project.urls]
homepage = "https://scarabee.readthedocs.io/en/latest/"
documentation = "https://scarabee.readthedocs.io/en/latest/"
source = "https://github.com/HunterBelanger/scarabee"
[tool.cibuildwheel]
skip = ["*musllinux*", "pp*"]
manylinux-x86_64-image = "manylinux_2_28"
[tool.cibuildwheel.linux]
archs = ["x86_64"]
repair-wheel-command = "auditwheel repair -w {dest_dir} {wheel}"
before-all = "dnf install -y libxkbcommon-devel libXcursor-devel libXi-devel libXinerama-devel libXrandr-devel"
[tool.cibuildwheel.windows]
archs = ["AMD64"]
[tool.cibuildwheel.macos]
environment = {"MACOSX_DEPLOYMENT_TARGET"="10.15"}
[[tool.cibuildwheel.overrides]]
select = "*-macosx_arm64"
environment = {"MACOSX_DEPLOYMENT_TARGET"="11"}