display all versions in --version - fixes #7

This commit is contained in:
Tarek Ziade 2012-02-14 13:18:16 +01:00
parent 1fb8c5113b
commit 3fabe017ae
4 changed files with 13 additions and 2 deletions

View file

@ -3,12 +3,14 @@ try:
except ImportError:
from distutils.core import setup
from flake8 import __version__
README = open('README').read()
setup(
name="flake8",
license="MIT",
version="1.1",
version=__version__,
description="code checking using pep8 and pyflakes",
author="Tarek Ziade",
author_email="tarek@ziade.org",