bgneal@8: #!/usr/bin/python bgneal@8: # (c) 2005-2009 Divmod, Inc. See LICENSE file for details bgneal@8: bgneal@8: from distutils.core import setup bgneal@8: bgneal@8: setup( bgneal@8: name="pyflakes", bgneal@8: license="MIT", bgneal@8: version="0.4.0", bgneal@8: description="passive checker of Python programs", bgneal@8: author="Phil Frost", bgneal@8: maintainer="Moe Aboulkheir", bgneal@8: maintainer_email="moe@divmod.com", bgneal@8: url="http://www.divmod.org/trac/wiki/DivmodPyflakes", bgneal@8: packages=["pyflakes", "pyflakes.scripts", "pyflakes.test"], bgneal@8: scripts=["bin/pyflakes"], bgneal@8: long_description="""Pyflakes is program to analyze Python programs and detect various errors. It bgneal@8: works by parsing the source file, not importing it, so it is safe to use on bgneal@8: modules with side effects. It's also much faster.""", bgneal@8: classifiers=[ bgneal@8: "Development Status :: 6 - Mature", bgneal@8: "Environment :: Console", bgneal@8: "Intended Audience :: Developers", bgneal@8: "License :: OSI Approved :: MIT License", bgneal@8: "Programming Language :: Python", bgneal@8: "Topic :: Software Development", bgneal@8: "Topic :: Utilities", bgneal@8: ])