Mercurial > hg > PaInt
comparison setup.py @ 46:bb3c646e9516
python 2.4 compatability
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Mon, 02 Apr 2012 10:43:56 -0700 |
parents | 14556787478c |
children | 4446cba4cee6 |
comparison
equal
deleted
inserted
replaced
45:bb0813966bff | 46:bb3c646e9516 |
---|---|
2 setup packaging script for PaInt | 2 setup packaging script for PaInt |
3 """ | 3 """ |
4 | 4 |
5 import os | 5 import os |
6 | 6 |
7 version = "0.1.1" | 7 version = "0.1.2" |
8 dependencies = ['virtualenv >= 1.7.1.2', 'pip >= 1.1', 'pkginfo', 'CommandParser >= 0.1.2'] | 8 dependencies = ['virtualenv >= 1.7.1.2', 'pip >= 1.1', 'pkginfo', 'CommandParser >= 0.1.3'] |
9 | 9 |
10 # allow use of setuptools/distribute or distutils | 10 # allow use of setuptools/distribute or distutils |
11 kw = {} | 11 kw = {} |
12 try: | 12 try: |
13 from setuptools import setup | 13 from setuptools import setup |