-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
76 lines (71 loc) · 2.05 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
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = [
"f90wrap>=0.2.14,<=0.2.16",
"numpy>=1.26.4,<=2.2",
"meson~=1.6.0",
"cython~=3.0.11",
"scikit-build-core",
]
build-backend = "scikit_build_core.build"
[tool.scikit-build]
cmake.version = "CMakeLists.txt"
ninja.version = ">=1.10"
cmake.build-type = "Release"
cmake.source-dir = "."
cmake.args = [
"-DBUILD_PYTHON=On",
"-DBUILD_EXECUTABLE=Off",
"-DREMAKE_F90WRAP=Off",
]
sdist.cmake = true
wheel.cmake = true
build-dir="build/{wheel_tag}"
wheel.expand-macos-universal-tags = true
ninja.make-fallback = true
sdist.reproducible = true
# dev purposes only
build.verbose = false
[project]
name = "raffle"
dynamic = ["version"]
dependencies = [
"numpy>=1.26.4,<=2.2",
"f90wrap>=0.2.14,<=0.2.16",
]
requires-python = ">=3.11,<=3.13.1"
authors = [
{ name = "Ned Thaddeus Taylor", email = "[email protected]" },
{ name = "Joe Pitfield", email = "[email protected]" },
{ name = "Steven Paul Hepplestone", email = "[email protected]" },
]
description = "A material interface structure prediction package"
readme = "README.md"
license = { text = 'GNU General Public License v3.0 or later'}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Fortran",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/ExeQuantCode/raffle"
Documentation = "https://raffle-fortran.readthedocs.io/"
Repository = "https://github.com/ExeQuantCode/raffle"
Issues = "https://github.com/ExeQuantCode/raffle/issues"
[project.optional-dependencies]
ase = ["ase>=3.23.0"]
no-ase = []
tests = [
"pytest",
"pytest-cov",
"parameterized",
"unittest",
]
[tool.scikit-build.metadata.version]
provider = "scikit_build_core.metadata.regex"
input = "fpm.toml"
regex = '(?i)^version *= \"(?P<value>.+?)\"'