-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
35 lines (32 loc) · 1.1 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
[build-system]
requires = ["wheel", "scikit-build-core"]
build-backend = "scikit_build_core.build"
[project]
name = "raspa"
version = "3.0.0"
description = "A general purpose classical simulation package"
authors = [
{ name = "Drs. Youri Ran, University of Amsterdam" },
{ name = "Drs. Shrinjay Sharma, Delft University of Technology" },
{ name = "Drs. Zhao Li, Northwestern University" },
{ name = "Prof. Sofia Calero, Eindhoven University of Technology" },
{ name = "Prof. Thijs Vlugt, Delft University of Technology" },
{ name = "Prof. Randall Q. Snurr, Northwestern University" },
{ name = "Dr. David Dubbeldam, University of Amsterdam", email = "[email protected]" },
]
dependencies = ["pybind11", "numpy"]
requires-python = ">=3.10"
license = { file = "LICENSE.md" }
readme = "README.md"
[tool.scikit-build]
cmake.version = ">=3.28"
cmake.build-type = "Release"
cmake.args = [
"--preset=python",
"-DBUILD_TESTING=0",
"-DBUILD_PYTHON=1",
"-DSKIP_EXECUTABLE=1",
]
wheel.cmake = true
build-dir = "build/python"
sdist.exclude = ["*.cpp", "*.ixx", "*.pcm", "CMakeLists.txt"]