Skip to main content

setuptools plugin for pyflakes

Project description

About

This is a plugin for setuptools that integrates pyflakes. Once installed, “python setup.py flakes” will run pyflakes on all of the modules in your project.

Installation

With easy_install:

easy_install setuptools_pyflakes

Alternative manual installation:

tar -zxvf setuptools_pyflakes-X.Y.Z.tar.gz cd setuptools_pyflakes-X.Y.Z python setup.py install

Where X.Y.Z is a version number.

Usage

To use this plugin, you must first package your python module with setup.py and use setuptools. The former is well documented in the distutils manual:

http://docs.python.org/dist/dist.html

To use setuptools instead of distutils, just edit setup.py and change

from distutils.core import setup

to

from setuptools import setup

Then, if this plugin is installed, “python setup.py flakes” will work.

Automatically installing setuptools_pyflakes

You can make sure that anyone who uses your setup.py, and who invokes “python setup.py flakes”, automatically gets this plugin installed, by adding a setup_requires argument.:

setup_requires=[]
# setuptools_pyflakes is required to make "python setup.py flakes" work.
if 'flakes' in sys.argv[1:]:
  setup_requires.append('setuptools_pyflakes')

setup(...,
  setup_requires = setup_requires,
  ...)

References

How to distribute Python modules with Distutils:

http://docs.python.org/dist/dist.html

Setuptools documentation:

http://peak.telecommunity.com/DevCenter/setuptools

Thanks to Yannick Gingras for providing the prototype for this README.rst.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

setuptools_pyflakes-1.1.0.tar.gz (4.5 kB view details)

Uploaded Source

File details

Details for the file setuptools_pyflakes-1.1.0.tar.gz.

File metadata

File hashes

Hashes for setuptools_pyflakes-1.1.0.tar.gz
Algorithm Hash digest
SHA256 7d427cb689266f55c98df4372bda540d8d4085ed856515af977ec7fa39166b73
MD5 d4904a8bd9aee45d79bbb22c58d4ec33
BLAKE2b-256 e688e049e604d9565477020f75b3ab6391ef958f41f674254a803e4457335075

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page