Skip to content

Commit

Permalink
Circle-Map reports the correct version now
Browse files Browse the repository at this point in the history
  • Loading branch information
iprada committed Aug 26, 2019
1 parent 028e1a9 commit a1a3e91
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
6 changes: 3 additions & 3 deletions circlemap/circle_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
import subprocess as sp
import glob
from tqdm import *

from circlemap.__version__ import __version__ as cm_version

class circle_map:

Expand All @@ -52,7 +52,7 @@ def __init__(self):
description='Circle-Map',
usage='''Circle-Map <subprogram> [options]
version=1.0
version=%s
contact= https://github.com/iprada/Circle-Map/issues
The Circle-Map suite
Expand All @@ -64,7 +64,7 @@ def __init__(self):
Repeats Identify circular DNA from repetitive regions
Simulate Simulate circular DNA
''')
''' % cm_version)
subparsers = self.parser.add_subparsers()

self.readextractor = subparsers.add_parser(
Expand Down
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,10 @@
#SOFTWARE.

from setuptools import setup,find_packages



from circlemap.__version__ import __version__

setup(name='Circle-Map',
version='1.0.4',
version=__version__,
description='Circular DNA analysis tools',
author='Inigo Prada-Luengo',
url='https://github.com/iprada/Circle-Map',
Expand Down

0 comments on commit a1a3e91

Please sign in to comment.