Skip to content

Commit

Permalink
Merge pull request #47 from yhoogstrate/v3.0.8
Browse files Browse the repository at this point in the history
PyPI requires a valid author email, or none at all
  • Loading branch information
Redmar-van-den-Berg committed Aug 12, 2021
2 parents 46d7d9d + 76ada8a commit a975e63
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions fuma/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,8 @@
<http://epydoc.sourceforge.net/manual-fields.html#fields-synonyms>
"""

__version_info__ = ('3', '0', '7')
__version_info__ = ('3', '0', '8')
__version__ = '.'.join(__version_info__) if (len(__version_info__) == 3) else '.'.join(__version_info__[0:3])+"-"+__version_info__[3]
__author__ = 'Youri Hoogstrate'
__author_email__ = '_@.'
__homepage__ = 'https://github.com/yhoogstrate/fuma'
__license__ = 'GNU General Public License v3 (GPLv3)'
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
description='Fusion Matcher',
long_description="FuMa (Fusion Matcher) matches predicted fusion events (both genomic and transcriptomic) according to chromosomal location and corresponding annotated genes. It is the organisation of the transcriptome (provided by the user) that forms the basis for FuMa to consider fusion genes to be identical or not. The provided gene annotation can be adjusted to define the biological question. For example, if it is desired to only consider fusion events that occur within exons, FuMa can be provided a list of such regions instead of entire genes.",
author=fuma.__author__,
author_email=fuma.__author_email__,
maintainer=fuma.__author__,
license=fuma.__license__,
url=fuma.__homepage__,
Expand Down

0 comments on commit a975e63

Please sign in to comment.