Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Surface areas #107

Open
wants to merge 12 commits into
base: main
Choose a base branch
from
1 change: 1 addition & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
numpy
torch
scipy
scikit-image
matplotlib
tifffile
myst_parser
Expand Down
4 changes: 3 additions & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,6 @@ matplotlib>3.6
pytest-runner==5.2
numpy>=1.24.2
tifffile==2023.2.3
myst-parser==0.18.1
myst-parser==0.18.1
scikit-image>=0.20.0
scipy>=1.3
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,14 @@
with open('HISTORY.md') as history_file:
history = history_file.read()

requirements = ['Click>=7.0', 'numpy>=1.0', 'matplotlib>=3.4', 'tifffile>=2023.2.3']
requirements = [
'Click>=7.0',
'numpy>=1.0',
'matplotlib>=3.4',
'tifffile>=2023.2.3',
'scikit-image>=0.20.0',
'scipy>=1.3'
]

setup_requirements = ['pytest-runner', ]

Expand Down
Loading
Loading