Skip to content

Commit

Permalink
Remove out of date email address, strip __author__ & __email__ (#225)
Browse files Browse the repository at this point in the history
* Remove out of date email address, strip __author__ & __email__

* Remove out of date email from setup.py, make 'authors' more inclusive
  • Loading branch information
GenevieveBuckley committed May 14, 2021
1 parent b931f7e commit f28094d
Show file tree
Hide file tree
Showing 8 changed files with 1 addition and 37 deletions.
4 changes: 0 additions & 4 deletions dask_image/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
# -*- coding: utf-8 -*-

__author__ = """John Kirkham"""
__email__ = "kirkhamj@janelia.hhmi.org"

from ._version import get_versions
__version__ = get_versions()['version']
del get_versions
6 changes: 0 additions & 6 deletions dask_image/imread/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
# -*- coding: utf-8 -*-


__author__ = """John Kirkham"""
__email__ = "kirkhamj@janelia.hhmi.org"


import glob
import numbers
import warnings
Expand Down
6 changes: 0 additions & 6 deletions dask_image/imread/_utils.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
# -*- coding: utf-8 -*-


__author__ = """John Kirkham"""
__email__ = "kirkhamj@janelia.hhmi.org"


import numpy
import pims

Expand Down
3 changes: 0 additions & 3 deletions dask_image/ndfilters/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
# -*- coding: utf-8 -*-

__author__ = """John Kirkham"""
__email__ = "kirkhamj@janelia.hhmi.org"

__all__ = [
"convolve",
"correlate",
Expand Down
6 changes: 0 additions & 6 deletions dask_image/ndfourier/__init__.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
# -*- coding: utf-8 -*-

from __future__ import division


__author__ = """John Kirkham"""
__email__ = "kirkhamj@janelia.hhmi.org"


import numbers

import dask.array
Expand Down
5 changes: 0 additions & 5 deletions dask_image/ndmeasure/__init__.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,11 @@
# -*- coding: utf-8 -*-

__author__ = """John Kirkham"""
__email__ = "kirkhamj@janelia.hhmi.org"


import collections
import functools
import operator
import warnings

import numpy

import dask.array

from . import _utils
Expand Down
5 changes: 0 additions & 5 deletions dask_image/ndmorph/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
# -*- coding: utf-8 -*-

__author__ = """John Kirkham"""
__email__ = "kirkhamj@janelia.hhmi.org"


import scipy.ndimage

from . import _utils
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,7 @@ def run_tests(self):
version=versioneer.get_version(),
description="Distributed image processing",
long_description=readme + "\n\n" + history,
author="John Kirkham",
author_email="kirkhamj@janelia.hhmi.org",
author="dask-image contributors",
url="https://github.com/dask/dask-image",
cmdclass=cmdclasses,
packages=setuptools.find_packages(exclude=["tests*"]),
Expand Down

0 comments on commit f28094d

Please sign in to comment.