Skip to content

Commit

Permalink
feat: add install dependencies to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
mgiammar committed Nov 21, 2024
1 parent 4a4c6a6 commit b2520fd
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,12 @@
[![codecov](https://codecov.io/gh/jdickerson95/torch-fourier-filter/branch/main/graph/badge.svg)](https://codecov.io/gh/jdickerson95/torch-fourier-filter)

Fourier space filters for image and volumes in pyTorch

Install via source using
```zsh
pip install -e .
```
And for development and testing use
```zsh
pip install -e ".[dev,test]"
```
8 changes: 7 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,13 @@ classifiers = [
"Typing :: Typed",
]
# add your package dependencies here
dependencies = []
dependencies = [
"torch",
"einops",
"torch_grid_utils",
"starfile",
"scipy",
]

# https://peps.python.org/pep-0621/#dependencies-optional-dependencies
# "extras" (e.g. for `pip install .[test]`)
Expand Down

0 comments on commit b2520fd

Please sign in to comment.