Skip to content

Commit

Permalink
Bumped version to 0.3.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
tjakobi committed Jun 28, 2016
1 parent 243bfad commit 5aaed87
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
7 changes: 3 additions & 4 deletions DCC/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,8 @@
def main():

parser = argparse.ArgumentParser(prog='DCC',formatter_class=argparse.RawDescriptionHelpFormatter, fromfile_prefix_chars='@', description='Contact jun.cheng@age.mpg.de')


parser.add_argument('--version', action='version', version='%(prog)s 0.3.2')

parser.add_argument('--version', action='version', version='%(prog)s 0.3.3')
parser.add_argument("Input", metavar='Input', nargs="+",
help="Input of the chimeric.out.junction file from STAR. Alternatively, a sample sheet specifying where your chimeric.out.junction files are, each sample per line, provide with @ prefix (e.g. @samplesheet).")
#parser.add_argument("-O", "--output", dest="output",
Expand Down Expand Up @@ -103,7 +102,7 @@ def main():
#formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
#ch.setFormatter(formatter)
#root.addHandler(ch)
logging.info('version:0.3.2')
logging.info('version: 0.3.3')
logging.info(' '.join(sys.argv))
logging.info('DCC started')

Expand Down
9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""

# Always prefer setuptools over distutils
from setuptools import setup, find_packages
from setuptools import setup
# To use a consistent encoding
from codecs import open
from os import path
Expand All @@ -23,7 +23,7 @@
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version='0.3.1c',
version='0.3.3',

description='Detect circRNAs from chimeras',
long_description=long_description,
Expand All @@ -35,6 +35,9 @@
author='Jun Cheng',
author_email='s6juncheng@gmail.com',

maintainer='Tobias Jakobi',
maintainer_email='Tobias.Jakobi@med.Uni-Heidelberg.DE',

# Choose your license
license='GNU General Public License (GPL)',

Expand All @@ -44,7 +47,7 @@
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
'Development Status :: 4 - Beta',

# Indicate who your project is intended for
'Intended Audience :: Researchers',
Expand Down

0 comments on commit 5aaed87

Please sign in to comment.