-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split into two functions, added Rust tests
- Loading branch information
1 parent
4998f42
commit 0e870c8
Showing
7 changed files
with
329 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
[package] | ||
name = "rustfrc" | ||
version = "1.0.2" | ||
version = "1.0.3" | ||
edition = "2018" | ||
|
||
[lib] | ||
name = "rustfrc" | ||
crate-type = ["cdylib"] | ||
|
||
[dependencies] | ||
numpy = "^0.14" | ||
ndarray = { version = "^0.15", features = ["rayon"] } | ||
ndarray-rand = "^0.14" | ||
numpy = "~0.14" | ||
ndarray = { version = "~0.15", features = ["rayon"] } | ||
ndarray-rand = "~0.14" | ||
|
||
[dependencies.pyo3] | ||
version = "^0.14" | ||
version = "~0.14" | ||
features = ["extension-module"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
[project] | ||
name = "rustfrc" | ||
version = "1.0.2" | ||
description = "Package with some fast Rust functions for use with FRC resolution determination for microscopy. TU Delft BEP 2021-2022." | ||
version = "1.0.3" | ||
description = "Fast utility functions useful for Fourier Ring/Shell Correlation: binomial splitting of arrrays" | ||
readme = "README.md" | ||
requires-python = ">=3.7, <3.11" | ||
requires-python = ">= 3.7" | ||
license = {text = "Apache-2.0"} | ||
authors = [ | ||
{email = "[email protected]"}, | ||
|
@@ -16,35 +16,23 @@ classifiers = [ | |
"Topic :: Scientific/Engineering :: Image Processing" | ||
] | ||
dependencies = [ | ||
'numpy >= 1.18, < 2' | ||
"numpy >= 1.18, < 2" | ||
] | ||
[project.urls] | ||
repository = "https://github.com/tmtenbrink/rustfrc" | ||
|
||
[tool.poetry] | ||
name = "rustfrc" | ||
version = "1.0.2" | ||
description = "Package with some fast Rust functions for use with FRC resolution determination for microscopy. TU Delft BEP 2021-2022." | ||
version = "1.0.3" | ||
description = "Fast utility functions useful for Fourier Ring/Shell Correlation: binomial splitting of arrays" | ||
authors = ["Tip ten Brink <[email protected]>"] | ||
readme = "README.md" | ||
classifiers = [ | ||
"Intended Audience :: Science/Research", | ||
"Programming Language :: Python", | ||
"Programming Language :: Rust", | ||
"Topic :: Scientific/Engineering :: Image Processing" | ||
] | ||
license = "Apache-2.0" | ||
|
||
[tool.poetry.urls] | ||
"Source Code" = "https://github.com/tmtenbrink/rustfrc" | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.7, <3.11" | ||
numpy = ">=1.18, < 2" | ||
python = ">= 3.7" | ||
numpy = ">= 1.18, < 2" | ||
|
||
[tool.poetry.dev-dependencies] | ||
maturin = "^0.11.3" | ||
pytest = "^6.2.5" | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.0.0"] | ||
requires = ["maturin >= 0.11, < 0.12"] | ||
build-backend ="maturin" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.