diff --git a/ntm_profiler/__init__.py b/ntm_profiler/__init__.py index 318266e..4c36b32 100644 --- a/ntm_profiler/__init__.py +++ b/ntm_profiler/__init__.py @@ -3,4 +3,4 @@ from .kmer import * from .reformat import * from .db import * -__version__="0.0.2" \ No newline at end of file +__version__="0.1.0" \ No newline at end of file diff --git a/setup.py b/setup.py index c9fe00f..fa30cfc 100644 --- a/setup.py +++ b/setup.py @@ -1,11 +1,12 @@ import setuptools +version = [l.strip() for l in open("ntm_profiler/__init__.py") if "version" in l][0].split('"')[1] setuptools.setup( name="ntm_profiler", - version="0.0.2", + version=version, packages=["ntm_profiler"], license="GPLv3", long_description="NTM-Profiler command line tool",