Skip to content

Commit 3de6bd8

Browse files
committed
first refactoring toward using sckit-build-core
1 parent 686bb3d commit 3de6bd8

25 files changed

+35
-0
lines changed

pyproject.toml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
[build-system]
2+
requires = ["scikit-build-core", "numpy"]
3+
build-backend = "scikit_build_core.build"
4+
5+
[project]
6+
name = "telewavesim"
7+
version = "0.3.0"
8+
description = "Teleseismic body wave modeling through stacks of (submarine/anisotropic) layers"
9+
authors = [
10+
{ name = "Pascal Audet", email = "[email protected]" },
11+
{ name = "Tom Eulenfeld", email = "[email protected]" },
12+
]
13+
maintainers = [
14+
{ name = "Pascal Audet", email = "[email protected]" },
15+
{ name = "Tom Eulenfeld", email = "[email protected]" },
16+
]
17+
readme = "README.md"
18+
dependencies = ["numpy", "matplotlib", "obspy"]
19+
classifiers = [
20+
'Development Status :: 3 - Alpha',
21+
'License :: OSI Approved :: MIT License',
22+
'Programming Language :: Fortran',
23+
'Programming Language :: Python :: 3 :: Only',
24+
"Environment :: Console",
25+
"Intended Audience :: Science/Research",
26+
"Topic :: Scientific/Engineering :: Physics",
27+
]
28+
29+
[project.urls]
30+
Homepage = "https://github.com/paudetseis/Telewavesim"
31+
32+
[tool.scikit-build]
33+
ninja.version = ">=1.10"
34+
cmake.version = ">=3.17.2"

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
from numpy.distutils.core import setup, Extension
44
from numpy.distutils.system_info import get_info
55

6+
67
def find_version(*paths):
78
fname = os.path.join(os.path.dirname(__file__), *paths)
89
with open(fname, encoding='utf-8') as fp:
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)