-
Notifications
You must be signed in to change notification settings - Fork 64
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 #125 from sigvaldm/setup
Bugfix #124: imports GPy before installing it
- Loading branch information
Showing
3 changed files
with
33 additions
and
19 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 |
---|---|---|
|
@@ -4,16 +4,7 @@ | |
'approximation', 'rbf', 'linear', 'gpr' | ||
] | ||
|
||
__project__ = 'EZyRB' | ||
__title__ = "ezyrb" | ||
__author__ = "Nicola Demo, Marco Tezzele" | ||
__copyright__ = "Copyright 2016-2019, EZyRB contributors" | ||
__license__ = "MIT" | ||
__version__ = "1.0" | ||
__mail__ = '[email protected], [email protected]' | ||
__maintainer__ = __author__ | ||
__status__ = "Stable" | ||
|
||
from .meta import * | ||
from .database import Database | ||
from .reduction import Reduction | ||
from .pod import POD | ||
|
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
__all__ = [ | ||
'__project__', | ||
'__title__', | ||
'__author__', | ||
'__copyright__', | ||
'__license__', | ||
'__version__', | ||
'__mail__', | ||
'__maintainer__', | ||
'__status__'] | ||
|
||
__project__ = 'EZyRB' | ||
__title__ = "ezyrb" | ||
__author__ = "Nicola Demo, Marco Tezzele" | ||
__copyright__ = "Copyright 2016-2019, EZyRB contributors" | ||
__license__ = "MIT" | ||
__version__ = "1.0" | ||
__mail__ = '[email protected], [email protected]' | ||
__maintainer__ = __author__ | ||
__status__ = "Stable" |
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