forked from SuperDARNCanada/dmap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 740 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (33 loc) · 740 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
[build-system]
requires = ["maturin>=1,<2", "numpy<3"]
build-backend = "maturin"
[project]
name = "darn-dmap"
version = "0.8.0"
requires-python = ">=3.8"
authors = [
{ name = "Remington Rohel" }
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Rust"
]
description = "SuperDARN DMAP file format I/O"
readme = "python/README.md"
dependencies = ["numpy<3"]
license = "LGPL-3.0-or-later"
[project.urls]
Repository = "https://github.com/SuperDARNCanada/dmap"
[tool.maturin]
python-source = "python"
module-name = "dmap.dmap_rs"
bindings = "pyo3"
profile = "release"
compatibility = "manylinux2014"
auditwheel = "repair"
strip = true
[project.optional-dependencies]
dev = [
"pytest",
"ruff",
]