Mercurial > hg > RequestDumpster
comparison setup.py @ 9:4c613e5840be
add webob as a dep
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Wed, 16 Dec 2015 10:53:34 -0800 |
parents | 83c51f45b82d |
children | cacab5fb2352 |
comparison
equal
deleted
inserted
replaced
8:eb260393caef | 9:4c613e5840be |
---|---|
3 """ | 3 """ |
4 | 4 |
5 import os | 5 import os |
6 | 6 |
7 version = "0.0" | 7 version = "0.0" |
8 dependencies = [] | 8 dependencies = ['webob'] |
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 |