Skip to content

Instantly share code, notes, and snippets.

@coderfi
Last active March 29, 2019 22:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coderfi/165c53b6edecb18996aef2cdacdeacf0 to your computer and use it in GitHub Desktop.
Save coderfi/165c53b6edecb18996aef2cdacdeacf0 to your computer and use it in GitHub Desktop.
Standard python user pip dev packages
# These are the standard pip packages
# I like to install in my user 'global' space.
# They generally do not belong in a project's
# requirements.txt file, and are almost always
# found in a file like requirement_dev.txt
#
# pip install --user requirements_user.txt
# echo 'export PATH=~/.local/bin:$PATH' >> ~/.bash_profile
autopep8>=1.4.3
bandit>=1.5.1
bumpversion>=0.5.3
cookiecutter>=1.6.0
pydocstyle>=3.0.0
pytest>=4.0.2
tox>=3.8.3
virtualenv>=16.4.3
virtualenvwrapper>=4.8.4
# These may be in a project's requirements.txt
# I include it here because I like to build
# CLI python scripts for my day to day shell
click>=7.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment