vim/ftplugin/python/pyflakes/setup.py @ e87c94c0f6dd

vim: add HTML5 elements to the LessCSS syntax
author Steve Losh <steve@stevelosh.com>
date Thu, 27 Jan 2011 10:33:56 -0500
parents d6e9fd358013
children (none)
#!/usr/bin/python
# (c) 2005 Divmod, Inc.  See LICENSE file for details

from distutils.core import setup

setup(
    name="pyflakes",
    license="MIT",
    version="0.2.1",
    description="passive checker of Python programs",
    author="Phil Frost",
    maintainer="Moe Aboulkheir",
    maintainer_email="moe@divmod.com",
    url="http://www.divmod.org/projects/pyflakes",
    packages=["pyflakes", "pyflakes.scripts"],
    scripts=["bin/pyflakes"],
    long_description="""Pyflakes is program to analyze Python programs and detect various errors. It
works by parsing the source file, not importing it, so it is safe to use on
modules with side effects. It's also much faster.""")