-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
44 lines (38 loc) · 1.02 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
[tool.poetry]
name = "pymaginverse"
version = "1.1.0"
description = "Python Library performing Geomagnetic Field inversions for (paleo)magnetic data"
authors = ["Frenk Out <outfrenk@gmail.com>",
"Maximilian Schanner",
"Liz van Grinsven",
"Monika Korte",
"Lennart de Groot"]
license = "MIT License"
readme = "README.md"
packages = [
{include = "pymaginverse"}
]
include = [
# CUDA/C extensions must be included in the wheel distributions
{path = "pymaginverse/banded_tools/*.so", format = "wheel"},
]
[tool.poetry.build]
generate-setup-file = false
script = "build_extension.py"
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
numpy = "^1.26.4"
scipy = "^1.12.0"
pandas = "^2.2.1"
pathlib = "^1.0.1"
tqdm = "^4.66.1"
matplotlib = "^3.8.3"
Cartopy = "^0.22.0"
pyshtools = "4.10.4"
cython = "^3.0"
[tool.poetry.group.dev.dependencies]
jupyter = "^1.0.0"
pytest = "^8.0.2"
[build-system]
requires = ["setuptools", "poetry-core>=1.2", "cython>=3.0", "numpy>=1.26"]
build-backend = "poetry.core.masonry.api"