-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
43 changed files
with
1,194 additions
and
937 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
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
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,23 +1,27 @@ | ||
"""Core code for RAIL""" | ||
import pkgutil | ||
import os | ||
import setuptools | ||
import rail | ||
import os | ||
|
||
from .stage import RailPipeline, RailStage | ||
|
||
# from .utilPhotometry import PhotormetryManipulator, HyperbolicSmoothing, HyperbolicMagnitudes | ||
from .util_stages import ColumnMapper, RowSelector, TableConverter | ||
from .introspection import RailEnv | ||
from .point_estimation import PointEstimationMixin | ||
|
||
|
||
def find_version(): | ||
"""Find the version""" | ||
# setuptools_scm should install a | ||
# file _version alongside this one. | ||
from . import _version | ||
from . import _version # pylint: disable=import-outside-toplevel | ||
|
||
return _version.version | ||
|
||
|
||
try: | ||
__version__ = find_version() | ||
except ImportError: # pragma: no cover | ||
except ImportError: # pragma: no cover | ||
__version__ = "unknown" | ||
|
||
from .stage import RailPipeline, RailStage | ||
#from .utilPhotometry import PhotormetryManipulator, HyperbolicSmoothing, HyperbolicMagnitudes | ||
from .util_stages import ColumnMapper, RowSelector, TableConverter | ||
from .introspection import RailEnv | ||
from .point_estimation import PointEstimationMixin |
Oops, something went wrong.