Mercurial > hg > PaInt
changeset 22:aad329df2548
go crazy nuts with dependencies
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Thu, 29 Mar 2012 15:05:18 -0700 |
parents | 4df3e715817d |
children | 90ef5d1ebff3 |
files | setup.py |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/setup.py Mon Feb 27 13:44:52 2012 -0800 +++ b/setup.py Thu Mar 29 15:05:18 2012 -0700 @@ -5,7 +5,7 @@ import os version = "0.0" -dependencies = [] +dependencies = ['virtualenv >= 1.7.1.2', 'pip >= 1.1', 'pkginfo'] # allow use of setuptools/distribute or distutils kw = {} @@ -18,6 +18,7 @@ kw['install_requires'] = dependencies except ImportError: from distutils.core import setup + kw['requires'] = dependencies try: here = os.path.dirname(os.path.abspath(__file__))