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