mirror of
https://github.com/kennethreitz/pip-pop.git
synced 2026-06-05 06:56:12 +00:00
a40d885070
Travis will need to be switched on for this repo via: https://travis-ci.org/profile Note: Due to #10 the tests currently fail for pip 8.1.2.
37 lines
851 B
ReStructuredText
37 lines
851 B
ReStructuredText
pip-pop
|
|
=======
|
|
|
|
.. image:: https://travis-ci.org/kennethreitz/pip-pop.svg?branch=master
|
|
:target: https://travis-ci.org/kennethreitz/pip-pop
|
|
|
|
Working with lots of ``requirements.txt`` files can be a bit annoying.
|
|
Have no fear, **pip-pop** is here!
|
|
|
|
(work in progress)
|
|
|
|
Planned Commands
|
|
----------------
|
|
|
|
``$ pip-diff [--fresh | --stale] <reqfile> <reqfile>``
|
|
|
|
Generates a diff between two given requirements files. Lists either stale or fresh packages.
|
|
|
|
``$ pip-grep <reqfile> <package>...``
|
|
|
|
Takes a requirements file, and searches for the specified package (or packages) within it.
|
|
Essential when working with included files.
|
|
|
|
|
|
Possible Future Commands
|
|
------------------------
|
|
|
|
- Install with blacklisting support (wsgiref, distribute, setuptools).
|
|
|
|
Development
|
|
-----------
|
|
|
|
To run the tests:
|
|
|
|
1. ``pip install -r requirements.txt``
|
|
2. ``tox``
|