Skip to content

Commit

Permalink
deprecate bump version stuff
Browse files Browse the repository at this point in the history
read version from setup.py
  • Loading branch information
robinandeer committed Oct 19, 2015
1 parent dd2ece9 commit c8c8361
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 19 deletions.
16 changes: 0 additions & 16 deletions .bumpversion.cfg

This file was deleted.

8 changes: 5 additions & 3 deletions chanjo/__init__.py
Expand Up @@ -8,9 +8,8 @@
:copyright: (c) 2014 by Robin Andeer
:licence: MIT, see LICENCE for more details
"""

import logging
logger = logging.getLogger()
from pkg_resources import get_distribution

__banner__ = r"""
______ ________
Expand All @@ -25,11 +24,14 @@
__summary__ = 'coverage analysis tool for clinical sequencing'
__uri__ = 'http://www.chanjo.co/'

__version__ = '3.0.0-beta2'
__version__ = get_distribution(__title__).version
__codename__ = 'Radical Red Panda'

__author__ = 'Robin Andeer'
__email__ = 'robin.andeer@gmail.com'

__license__ = 'MIT'
__copyright__ = 'Copyright 2015 Robin Andeer'

# the user should dictate what happens when a logging event occurs
logging.getLogger(__name__).addHandler(logging.NullHandler())

0 comments on commit c8c8361

Please sign in to comment.