Metadata-Version: 2.1
Name: IHpip
Version: 0.1.0
Summary: Small package that makes requirement.txt files better
Home-page: https://gitlab.com/ire4ever1190/ihpip
Author: Jake Leahy
Author-email: darhyaust@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown

### IHpip
simple extension to the pip -r command which allows you to separate your dependencies
for different environments e.g. testing and production

sample requirements.yml
```yaml
test:
  - pytest
  - tox

prod:
  - pyyaml
```
to install the test dependencies run
```ihpip requirements.yml test```

this can also be used to separate python dependencies for different docker containers


