From 76ada8a9dff11fc2027adfe99fa9fafaadf2660b Mon Sep 17 00:00:00 2001 From: Redmar van den Berg Date: Thu, 12 Aug 2021 13:51:17 +0200 Subject: [PATCH] PyPI requires a valid author email, or none at all --- fuma/__init__.py | 3 +-- setup.py | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/fuma/__init__.py b/fuma/__init__.py index c827a12..fb1ca68 100644 --- a/fuma/__init__.py +++ b/fuma/__init__.py @@ -21,9 +21,8 @@ """ -__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)' diff --git a/setup.py b/setup.py index ab90ac6..76c5420 100755 --- a/setup.py +++ b/setup.py @@ -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__,