Skip to content

Commit

Permalink
require python 2.6+
Browse files Browse the repository at this point in the history
  • Loading branch information
mcdonc committed Feb 15, 2012
1 parent 4e2b399 commit 52b93fe
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions setup.py
Expand Up @@ -13,6 +13,7 @@
############################################################################## ##############################################################################


import os import os
import sys


from setuptools import setup, find_packages from setuptools import setup, find_packages


Expand All @@ -34,6 +35,9 @@


__version__ = '0.0' __version__ = '0.0'


if sys.version_info[:3] < (2,5,0):
raise RuntimeError('This application requires Python 2.6+')

setup(name='cluegun', setup(name='cluegun',
version=__version__, version=__version__,
description='A Pyramid sample application: pastebin (based on ClueBin)', description='A Pyramid sample application: pastebin (based on ClueBin)',
Expand Down

0 comments on commit 52b93fe

Please sign in to comment.