Find packages that should be in requirements for a project
Project description
pip-missing-reqs
================
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.
.. _`virtualenv`: https://virtualenv.pypa.io/en/latest/
.. _`requirements.txt`: https://pip.pypa.io/en/latest/user_guide.html#requirements-files
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
.. _`sample project`: https://packaging.python.org/en/latest/tutorial.html#creating-your-own-project
Basic usage, running in your project directory::
<activate virtualenv for your project>
pip-missing-reqs --ignore-files=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::
[pip-missing-reqs]
deps=-rrequirements.txt
commands=pip-missing-reqs --ignore-files=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-files
option.
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-mods::
# ignore the module spam
pip-missing-reqs --ignore-mods=spam sample
# ignore the whole package spam as well
pip-missing-reqs --ignore-mods=spam --ignore-mods=spam.* sample
Release History
---------------
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
================
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.
.. _`virtualenv`: https://virtualenv.pypa.io/en/latest/
.. _`requirements.txt`: https://pip.pypa.io/en/latest/user_guide.html#requirements-files
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
.. _`sample project`: https://packaging.python.org/en/latest/tutorial.html#creating-your-own-project
Basic usage, running in your project directory::
<activate virtualenv for your project>
pip-missing-reqs --ignore-files=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::
[pip-missing-reqs]
deps=-rrequirements.txt
commands=pip-missing-reqs --ignore-files=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-files
option.
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-mods::
# ignore the module spam
pip-missing-reqs --ignore-mods=spam sample
# ignore the whole package spam as well
pip-missing-reqs --ignore-mods=spam --ignore-mods=spam.* sample
Release History
---------------
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pip_missing_reqs-1.1.1.tar.gz
.
File metadata
- Download URL: pip_missing_reqs-1.1.1.tar.gz
- Upload date:
- Size: 8.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8e30771bf11e81868b383bcb84df80e85e6759ba7156e0d9bbb7ef4100436495 |
|
MD5 | a3fb1aa8831f7e901237256093c05f06 |
|
BLAKE2b-256 | 116791eba7fe9d8418d6b358079d9e8644dd0dbf48387753e368f196fee130a1 |
File details
Details for the file pip_missing_reqs-1.1.1-py2.py3-none-any.whl
.
File metadata
- Download URL: pip_missing_reqs-1.1.1-py2.py3-none-any.whl
- Upload date:
- Size: 20.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 980d714ac028f1862aa3933046a1cbe1b0111165f247b2a2676153f3e94708e3 |
|
MD5 | 9c39d2957e69f6d3fa8319d899aefefb |
|
BLAKE2b-256 | a611e751f39d4dd64aae5bbd012f3dcf429a931c79169f422ada68afbe529e0f |