-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
64 lines (56 loc) · 1.45 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
[build-system]
requires = ["scikit-build-core>=0.10", "pybind11"]
build-backend = "scikit_build_core.build"
[project]
name = "specfempp_core"
version = "0.1.0"
description = "Kokkos implementation of SpecFEM2D code"
readme = "README.md"
authors = [
{ name = "Rohit R Kakodkar", email = "[email protected]" },
{ name = "Lucas Sawade", email = "[email protected]" },
{ name = "Congyue Cui", email = "[email protected]" }
]
requires-python = ">=3.12"
[project.optional-dependencies]
dev = [
"pre-commit~=2.19.0",
"clang-format~=15.0.6",
"ruff>=0.6.7"
]
docs = [
"sphinx-rtd-theme~=1.3.0",
"doc8>=0.3.6",
"rstcheck>=6.2.4",
"restructuredtext-lint>=1.4.0",
"sphinx-copybutton~=0.4.0",
"furo~=2024.8.6",
"breathe~=4.35.0",
"sphinx-sitemap~=2.2.0"
]
[tool.scikit-build]
cmake.define.CMAKE_BUILD_TYPE = "Release"
cmake.define.BUILD_TESTS = "ON"
cmake.define.SPECFEMPP_USE_SKBUILD = "ON"
cmake.define.SPECFEMPP_BINDING_PYTHON = "ON"
build-dir = "./build"
build.tool-args = ["-j4"]
[tool.poetry]
package-mode = false
[tool.poetry.dependencies]
python = ">=3.12,<4.0"
pre-commit = "^2.19.0"
clang-format = "^15.0.6"
sphinx-rtd-theme = "^1.0.0"
doc8 = ">=0.3.6"
rstcheck = ">=6.2.4"
restructuredtext-lint = ">=1.4.0"
sphinx-copybutton = "^0.4.0"
furo = ">=2024.8.6"
breathe = "^4.34.0"
sphinx-sitemap = "^2.2.0"
ruff = ">=0.6.7"
[tool.poetry.dev-dependencies]
[tool.snakefmt]
line_length = 90
include = '\.smk$|^Snakefile|\.py|^Snakefile.in$'