Metadata-Version: 2.1
Name: pp-up
Version: 0.1.0
Summary: Update pypi dependencies
Home-page: https://github.com/jbwdevries/pp-up
Author: Johan B.W. de Vries
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/jbwdevries/pp-up/issues
Project-URL: Source Code, https://github.com/jbwdevries/pp-up
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests
Provides-Extra: develop
Requires-Dist: mypy (==0.770) ; extra == 'develop'
Requires-Dist: pylint (==2.4.4) ; extra == 'develop'
Requires-Dist: setuptools (==46.1.3) ; extra == 'develop'
Requires-Dist: twine (==3.1.1) ; extra == 'develop'

pp-up
=====

Overview
--------
Script to update your dependencies by checking if there are new versions
available on pypi.

This script parses your requirements.txt and setup.py files, and updates any
pinned version you may have to the latest version available on pypi.

When you have a version pinned for a specific reason add `# pp_up: pin` to the line you want
to pin, this only works on requirements files example:

```
pp_up==0.0.1 # pp_up: pin
```

The files are backupped before modification.

Usage
-----
```bash
cd $YOUR_PROJECT_DIR
python -m pp_up
```


