forked from groupeLIAMG/ttcr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (44 loc) · 1.64 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
[build-system]
requires = ["setuptools", "setuptools-scm[toml]", "cython", "numpy", "scipy", "vtk"]
build-backend = "setuptools.build_meta"
[project]
name = "ttcrpy"
authors = [
{name = "Bernard Giroux", email = "[email protected]"},
]
description = "Code to perform raytracing for geophysical applications"
license = {file = "01_LICENSE.txt"}
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: C++",
"Programming Language :: Cython",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering"
]
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/groupeLIAMG/ttcr"
documentation = "https://ttcrpy.readthedocs.io/en/latest/"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]
write_to = "src/ttcrpy/_version.py"
[tool.cibuildwheel]
# Skip 32-bit builds & building PyPy wheels on all platforms
skip = ["*-win32", "*-manylinux_i686", "pp*", "*-musllinux*", ]
# Build `universal2` and `arm64` wheels on an Intel runner.
# Note that the `arm64` wheel and the `arm64` part of the `universal2`
# wheel cannot be tested in this configuration.
[tool.cibuildwheel.macos]
archs = ["x86_64", "arm64"]