-
Notifications
You must be signed in to change notification settings - Fork 189
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
1 parent
e38f7d1
commit 987cb6d
Showing
4 changed files
with
16 additions
and
12 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 |
---|---|---|
|
@@ -13,8 +13,8 @@ computation related to assembly, annotation, and comparative genomics. | |
| ------- | ---------------------------------------------------------------- | | ||
| Authors | Haibao Tang ([tanghaibao](http://github.com/tanghaibao)) | | ||
| | Vivek Krishnakumar ([vivekkrish](https://github.com/vivekkrish)) | | ||
| | Jingping Li ([Jingping](https://github.com/Jingping)) | | ||
| | Xingtan Zhang ([tangerzhang](https://github.com/tangerzhang)) | | ||
| | Won Cheol Yim ([wyim-pgl](https://github.com/wyim-pgl)) | | ||
| Email | <[email protected]> | | ||
| License | [BSD](http://creativecommons.org/licenses/BSD/) | | ||
|
||
|
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 |
---|---|---|
|
@@ -2,8 +2,13 @@ | |
from pkg_resources import get_distribution, DistributionNotFound | ||
|
||
|
||
__author__ = ("Haibao Tang", "Vivek Krishnakumar", "Jingping Li") | ||
__copyright__ = "Copyright (c) 2010-{}, Haibao Tang".format(datetime.now().year) | ||
__author__ = ( | ||
"Haibao Tang", | ||
"Vivek Krishnakumar", | ||
"Xingtan Zhang", | ||
"Won Cheol Yim", | ||
) | ||
__copyright__ = f"Copyright (c) 2010-{datetime.now().year}, Haibao Tang" | ||
__email__ = "[email protected]" | ||
__license__ = "BSD" | ||
__status__ = "Development" | ||
|
@@ -14,10 +19,10 @@ | |
except DistributionNotFound: # pragma: no cover | ||
try: | ||
from .version import version as VERSION # noqa | ||
except ImportError: # pragma: no cover | ||
except ImportError as exc: # pragma: no cover | ||
raise ImportError( | ||
"Failed to find (autogenerated) version.py. " | ||
"This might be because you are installing from GitHub's tarballs, " | ||
"use the PyPI ones." | ||
) | ||
) from exc | ||
__version__ = VERSION |
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