-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
50 lines (44 loc) · 1.27 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
[project]
name = "rustfrc"
version = "1.1.5"
description = "Fast utility functions useful for Fourier Ring/Shell Correlation: binom_split, pois_gen, square_abs."
readme = "README.md"
requires-python = ">=3.8, <3.13"
license = {text = "Apache-2.0"}
authors = [
{email = "[email protected]"},
{name = "Tip ten Brink"}
]
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Rust",
"Topic :: Scientific/Engineering :: Image Processing"
]
dependencies = [
"numpy >= 1.18; python_version < '3.12'",
"numpy >= 1.26; python_version >= '3.12'"
]
[project.urls]
Source = "https://github.com/tmtenbrink/rustfrc"
[tool.poetry]
name = "rustfrc"
version = "1.1.5"
description = "Fast utility functions useful for Fourier Ring/Shell Correlation: binomial splitting of arrays."
authors = ["Tip ten Brink <[email protected]>"]
packages = [
{ include = "rustfrc", from = "python" },
]
[tool.poetry.dependencies]
python = ">= 3.8, <3.13"
numpy = [
{version = "^1.18", python = "<3.12"},
{version = "^1.26", python = ">=3.12"}
]
[tool.poetry.dev-dependencies]
pytest = "^8.1.1"
[tool.maturin]
python-source = "python"
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend ="maturin"