Skip to content

Commit

Permalink
major refactoring of SIMBAD structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Felix Simkovic committed May 5, 2017
1 parent 117fc79 commit 76c0de7
Show file tree
Hide file tree
Showing 32 changed files with 893 additions and 1,430 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def version():
"""Get the current SIMBAD version"""
# Credits to http://stackoverflow.com/a/24517154
main_ns = {}
ver_path = convert_path(os.path.join('simbad', 'util', 'version.py'))
ver_path = convert_path(os.path.join('simbad', 'version.py'))
with open(ver_path) as f_in:
exec(f_in.read(), main_ns)
return main_ns['__version__']
Expand Down
12 changes: 12 additions & 0 deletions simbad/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
"""This is SIMBAD
Sequence Independent Molecular replacement Based on Available Database
"""

from simbad import version

__main_author__ = "Adam Simpkin"
__contributing_authors__ = "Jens Thomas, Felix Simkovic and Ronan Keegan"
__credits__ = "Daniel Rigden, William Shepard, Charles Ballard, Villi Uski, Andrey Lebedev"
__email__ = "hlasimpk@liv.ac.uk"
__version__ = version.__version__

0 comments on commit 76c0de7

Please sign in to comment.