-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #41 from simontorres/fix_focus_when_data_is_not_good
Fix focus when data is not good
- Loading branch information
Showing
8 changed files
with
96 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
docs/_build/ | ||
.idea/* | ||
dist/* | ||
build/* | ||
*__pycache__* | ||
*.egg-info/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from .version import __version__ | ||
from .goodman_focus import GoodmanFocus | ||
from .goodman_focus import run_goodman_focus | ||
from .version import __version__ # noqa: F401 | ||
from .goodman_focus import GoodmanFocus # noqa: F401 | ||
from .goodman_focus import run_goodman_focus # noqa: F401 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# This is an automatic generated file please do not edit | ||
__version__ = '2.0.0' | ||
__version__ = '2.0.2' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ package_name = goodman_focus | |
description = Finds best focus for Goodman HTS based on a series of images obtained with different focus values | ||
long_description = Standalone app to get the best focus. | ||
author = Simon Torres | ||
author_email = [email protected].edu | ||
author_email = simon.torres@noirlab.edu | ||
license = BSD-3-Clause | ||
# url = | ||
edit_on_github = False | ||
|
@@ -32,4 +32,4 @@ install_requires = | |
sphinx | ||
|
||
# version should be PEP440 compatible (http://www.python.org/dev/peps/pep-0440) | ||
version = 2.0.1 | ||
version = 2.0.2 |