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

Remove out of date email address, strip __author__ & __email__ #225

Merged
merged 2 commits into from
May 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unrelated, but we can probably drop this now that the code is Python 3 only. Raised as issue ( #226 )



__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,15 +1,10 @@
# -*- coding: utf-8 -*-

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


import collections
import functools
import operator

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