|
1 | 1 | [build-system] |
2 | | -requires = ["setuptools>=61", "wheel", "cmake>=3.20"] |
3 | | -build-backend = "setuptools.build_meta" |
| 2 | +requires = ["scikit-build-core>=1.0.3"] |
| 3 | +build-backend = "scikit_build_core.build" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "spicedmodel" |
| 7 | +version = "1.0.0" |
| 8 | +description = "Python wrapper for the Scalable Plasma Ion Composition and Electron Density (SPICED) model" |
| 9 | +readme = "README.md" |
| 10 | +license = "MIT" |
| 11 | +authors = [ |
| 12 | + { name = "Matthew Knight James", email = "mattkjames7@gmail.com" }, |
| 13 | +] |
| 14 | +classifiers = [ |
| 15 | + "Programming Language :: Python :: 3", |
| 16 | +] |
| 17 | +dependencies = [ |
| 18 | + "numpy", |
| 19 | + "matplotlib", |
| 20 | +] |
| 21 | + |
| 22 | +[project.urls] |
| 23 | +Homepage = "https://github.com/mattkjames7/spicedmodel" |
| 24 | + |
| 25 | +[tool.scikit-build] |
| 26 | +minimum-version = "build-system.requires" |
| 27 | +cmake.version = ">=3.20" |
| 28 | +cmake.build-type = "Release" |
| 29 | +wheel.packages = ["spicedmodel"] |
| 30 | +install.components = ["Python"] |
| 31 | +sdist.exclude = [ |
| 32 | + "spicedmodel/__data/spiced/build", |
| 33 | + "spicedmodel/__data/spiced/.git", |
| 34 | + "**/__pycache__", |
| 35 | +] |
| 36 | +wheel.exclude = [ |
| 37 | + "spicedmodel/__data/spiced/.github", |
| 38 | + "spicedmodel/__data/spiced/cmake", |
| 39 | + "spicedmodel/__data/spiced/examples", |
| 40 | + "spicedmodel/__data/spiced/include", |
| 41 | + "spicedmodel/__data/spiced/legacy", |
| 42 | + "spicedmodel/__data/spiced/src", |
| 43 | + "spicedmodel/__data/spiced/test", |
| 44 | + "spicedmodel/__data/spiced/.git*", |
| 45 | + "spicedmodel/__data/spiced/BUILD.md", |
| 46 | + "spicedmodel/__data/spiced/CMakeLists.txt", |
| 47 | + "spicedmodel/__data/spiced/LICENSE", |
| 48 | + "spicedmodel/__data/spiced/README.md", |
| 49 | + "spicedmodel/__data/spiced/data.tar.gz", |
| 50 | +] |
0 commit comments