Skip to content
This repository has been archived by the owner on Mar 8, 2021. It is now read-only.

Commit

Permalink
Merge pull request #14 from uber/dev/ca/python3
Browse files Browse the repository at this point in the history
Add guide to contribute
  • Loading branch information
charlax committed Nov 24, 2013
2 parents 6ea5fcb + d4de1cf commit 145707f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
7 changes: 7 additions & 0 deletions docs/contributing.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Contributing
============

Install the requirements::

$ pip install -r requirements.txt
$ pip install -r requirements-dev.txt
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ Contents
file-format
hooks
api-reference
contributing
changelog


Expand Down
4 changes: 2 additions & 2 deletions fabfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ def coverage():

@task
def clean():
"""Remove all .pyc files"""
"""Remove all .pyc files."""
# Ignore hidden files and folder
local("find . \( ! -regex '.*/\..*/..*' \) -type f -name '*.pyc' -exec rm '{}' +")
local("find . -name '*.py[co]' -exec rm -f '{}' ';'")


@task
Expand Down

0 comments on commit 145707f

Please sign in to comment.