Mercurial > hg > TextShaper
comparison setup.py @ 18:df52326aa08d
start filling out options
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sat, 22 Feb 2014 22:49:18 -0800 |
parents | 497b29bba41b |
children | e6f680d25d63 |
comparison
equal
deleted
inserted
replaced
17:30c534d3db66 | 18:df52326aa08d |
---|---|
3 """ | 3 """ |
4 | 4 |
5 import os | 5 import os |
6 | 6 |
7 version = "0.0" | 7 version = "0.0" |
8 dependencies = ['webob'] | 8 dependencies = ['webob', 'which'] |
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 |