Mercurial > public > dotfiles
comparison vim/vimfiles/bundle/pyflakes-vim/ftplugin/python/pyflakes/setup.py @ 8:097c95760fd0
Added pyflakes-vim plugin support.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 29 Apr 2012 16:30:44 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
7:86e0ac713642 | 8:097c95760fd0 |
---|---|
1 #!/usr/bin/python | |
2 # (c) 2005-2009 Divmod, Inc. See LICENSE file for details | |
3 | |
4 from distutils.core import setup | |
5 | |
6 setup( | |
7 name="pyflakes", | |
8 license="MIT", | |
9 version="0.4.0", | |
10 description="passive checker of Python programs", | |
11 author="Phil Frost", | |
12 maintainer="Moe Aboulkheir", | |
13 maintainer_email="moe@divmod.com", | |
14 url="http://www.divmod.org/trac/wiki/DivmodPyflakes", | |
15 packages=["pyflakes", "pyflakes.scripts", "pyflakes.test"], | |
16 scripts=["bin/pyflakes"], | |
17 long_description="""Pyflakes is program to analyze Python programs and detect various errors. It | |
18 works by parsing the source file, not importing it, so it is safe to use on | |
19 modules with side effects. It's also much faster.""", | |
20 classifiers=[ | |
21 "Development Status :: 6 - Mature", | |
22 "Environment :: Console", | |
23 "Intended Audience :: Developers", | |
24 "License :: OSI Approved :: MIT License", | |
25 "Programming Language :: Python", | |
26 "Topic :: Software Development", | |
27 "Topic :: Utilities", | |
28 ]) |