diff --git a/setup.py b/setup.py index 03c6f2d..9b95bef 100644 --- a/setup.py +++ b/setup.py @@ -1,15 +1,10 @@ #!/usr/bin/env python3 from distutils.core import setup -import subprocess - -def version(): - git_proc = subprocess.Popen(['git', 'describe', '--always', '--dirty', '--tag'], stdout=subprocess.PIPE) - return git_proc.stdout.readlines()[0].decode('utf-8').strip() setup( name = 'makeelf', packages = ['makeelf', 'makeelf.type'], - version = version(), + version = '0.3.3', description = 'ELF reader-writer library', url = 'https://github.com/v3l0c1r4pt0r/makeelf', author = 'v3l0c1r4pt0r',