Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Apr 1, 2024
1 parent 22f0b19 commit d0b7e3a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
1 change: 1 addition & 0 deletions microutil/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""All the Utilities :)"""

# Must import __version__ first to avoid errors importing this file during the build process.
# See https://github.com/pypa/setuptools/issues/1724#issuecomment-627241822
from ._version import __version__
Expand Down
1 change: 1 addition & 0 deletions microutil/_unet.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
This function in this file is taken based on and/or taken from https://github.com/lpbsscientist/YeaZ-GUI
which is under the MIT license.
"""

# Import tensorflow differently depending on version
from tensorflow import __version__ as tf_version
from tensorflow.keras.layers import (
Expand Down
1 change: 1 addition & 0 deletions microutil/leica/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""
Utilities for loading from a leica scope
"""

from .leica import *
1 change: 1 addition & 0 deletions microutil/single_cell/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""
Operations for doing math over single cells in a timeseries
"""

from .single_cell import *
9 changes: 2 additions & 7 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ url = https://github.com/Hekstra-Lab/microutil
author = Ian Hunt-Isaak, John Russell
author_email = [email protected], [email protected]
license = BSD-3-Clause
license_file = LICENSE
license_files = LICENSE
platforms = Linux, Mac OS X, Windows
classifiers =
Intended Audience :: Developers
Expand All @@ -16,11 +16,6 @@ classifiers =
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10

[options]
packages = find:
Expand All @@ -38,7 +33,7 @@ install_requires =
tifffile
xarray
zarr
python_requires = >=3.6
python_requires = >=3.8

[options.extras_require]
all =
Expand Down

0 comments on commit d0b7e3a

Please sign in to comment.