Mercurial > pymonkey
comparison python-modules/paver/defaults.py @ 25:3c2151124cee
Converted pavement.py to manage.py and added a README.
author | Atul Varma <varmaa@toolness.com> |
---|---|
date | Mon, 29 Jun 2009 10:19:33 -0700 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
24:74b7ad049542 | 25:3c2151124cee |
---|---|
1 """The namespace for the pavement to run in, also imports default tasks.""" | |
2 | |
3 import warnings | |
4 | |
5 warnings.warn("""paver.defaults is deprecated. Import from paver.easy instead. | |
6 Note that you will need to add additional declarations for exactly | |
7 equivalent behavior. Specifically: | |
8 | |
9 from paver.easy import * | |
10 import paver.misctasks | |
11 from paver import setuputils | |
12 | |
13 setuputils.install_distutils_tasks() | |
14 """, DeprecationWarning, 2) | |
15 | |
16 from paver.easy import * | |
17 from paver.misctasks import * | |
18 from paver import setuputils | |
19 | |
20 setuputils.install_distutils_tasks() |