Skip to main content

Find packages that should be in requirements for a project

Project description

It happens: you start using a module in your project and it works and you don’t realise that it’s only being included in your virtualenv because it’s a dependency of a package you’re using. This tool finds those modules so you can include them in the requirements.txt for the project.

Assuming your project follows a layout like the suggested sample project:

setup.py
setup.cfg
requirements.txt
sample/__init__.py
sample/sample.py
sample/tests/test_sample.py

Basic usage, running in your project directory:

<activate virtualenv for your project>
pip-missing-reqs --ignore-file=sample/tests/* sample

This will find all imports in the code in “sample” and check that the packages those modules belong to are in the requirements.txt file.

Sample tox.ini configuration

To make your life easier, copy something like this into your tox.ini:

[testenv:pip-missing-reqs]
deps=-rrequirements.txt
commands=pip-missing-reqs --ignore-file=sample/tests/* sample

Excluding test files (or others) from this check

Your test files will sometimes be present in the same directory as your application source (“sample” in the above examples). The requirements for those tests generally should not be in the requirements.txt file, and you don’t want this tool to generate false hits for those.

You may exclude those test files from your check using the –ignore-file option (shorthand is -f). Multiple instances of the option are allowed.

Excluding modules from the check

If your project has modules which are conditionally imported, or requirements which are conditionally included, you may exclude certain modules from the check by name (or glob pattern) using –ignore-module (shorthand is -m):

# ignore the module spam
pip-missing-reqs --ignore-module=spam sample
# ignore the whole package spam as well
pip-missing-reqs --ignore-module=spam --ignore-module=spam.* sample

Release History

1.1.6

  • add debug (very verbose) run output

1.1.5

  • add header to output to make it clearer when in a larger test run

  • fix tests and self-test

1.1.4

  • add –version

  • remove debug print from released code lol

1.1.3

  • fix program to generate exit code useful for testing

1.1.2

  • corrected version of vendored search_packages_info() from pip

  • handle relative imports

1.1.1

  • fixed handling of import from __future__

  • self-tested and added own requirements.txt

  • cleaned up usage to require a file or directory to scan (rather than defaulting to “.”)

  • vendored code from pip 1.6dev which fixes bug in search_packages_info until pip 1.6 is released

1.1.0

  • implemented –ignore-module

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

pip_missing_reqs-1.1.6.tar.gz (9.3 kB view details)

Uploaded Source

Built Distribution

pip_missing_reqs-1.1.6-py2.py3-none-any.whl (11.1 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file pip_missing_reqs-1.1.6.tar.gz.

File metadata

File hashes

Hashes for pip_missing_reqs-1.1.6.tar.gz
Algorithm Hash digest
SHA256 00df9891fb6f67373ca6ba04784230b0530236bf0a97579b072ecfd7818e360b
MD5 ced1c2933da0bbc66d4353112c8f96a7
BLAKE2b-256 d81f948821f6cf3db8bc7b9570817da5f6202af7e5c44468755090f0714165c7

See more details on using hashes here.

File details

Details for the file pip_missing_reqs-1.1.6-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for pip_missing_reqs-1.1.6-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 62b722739b887867364afa3e77e4c80930f707e14e5f0c118bfaacefe62fbf36
MD5 56a137cf5747a6444008cd32ee38676f
BLAKE2b-256 a77092c8a83a6631b0c97030a99fde4c472ec6b652247a40281033cccdf3bd68

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