File: command.py

package info (click to toggle)
python-paver 1.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,220 kB
  • ctags: 979
  • sloc: python: 4,678; makefile: 20
file content (10 lines) | stat: -rw-r--r-- 210 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
"""Paver's command-line driver"""

import warnings

warnings.warn("paver.command is deprecated. Please re-run the generate_setup task.",
    stacklevel=2)
import paver.tasks

def main():
    paver.tasks.main()