-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 977 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (32 loc) · 977 Bytes
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
[project]
name = "pythonCFS"
dynamic = ["version"]
description = "Python wrapper for the Cambridge Electronic Design CFS library."
authors = [
{name = "Seamus", email = "<m0ose01@proton.me>"}
]
readme = "README.md"
license = {file = "LICENSE.txt"}
requires-python = ">=3.10"
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: C",
"Programming Language :: Cython",
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
]
[project.optional-dependencies]
dev = ["pytest>=8.3.2", "build>=1.2.1"]
[build-system]
requires = ["scikit-build-core>=0.10.3", "cython>=3.0.11"]
build-backend = "scikit_build_core.build"
[tool.scikit-build]
metadata.version.provider = "scikit_build_core.metadata.setuptools_scm"
sdist.include = ["src/CFS/_version.py"]
[tool.setuptools_scm]
write_to = "src/CFS/_version.py"
[tool.cibuildwheel]
build-frontend = "build"
test-extras = "dev"
test-command = "pytest {package}/tests"
skip = "pp*"