Check whether your PyPI requirements are up to date. Demo
You can install pypiup
through pypi.
sudo pip install pypiup
The command you can use is pypiup
. Use --help
to see all the available options.
> pypiup --help
Usage: pypiup [OPTIONS]
PyPIup
Check whether your PyPI requirements are up to date.
Options:
-r, --requirement TEXT Specify the path of the requirements file. Defaults
to "requirements.txt".
-d, --demo Load the demo requirements.txt file that comes with
the package.
--help Show this message and exit.
pyvenv env
source env/bin/activate
pip install -r requirements.txt
python pypiup/cli.py --help
python pypiup/cli.py --demo
In order to run the tests you will have to run:
python runtests.py
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request
- Make sure tests are passing