Skip to content

Commit

Permalink
Update README.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethreitz authored Nov 19, 2016
1 parent 5315c16 commit 3431fc0
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,38 @@ A ``Pipfile`` will be superior to a ``requirements.txt`` file in a number of way
- Use of a single file only will be extremely encouraged.
- ``Pipfile.lock``


Example Pipfile
+++++++++++++++

Example Pipfile.lock
++++++++++++++++++++

Note—this file is always to be generated, not modified or constructed by a user::

{
"_meta": {
"sources": [
{"url": "https://simple.crate.io/"},
{"url": "https://pypi.python.org/simple/", "verify_ssl": false},
]
},
"default": [
{"name": "requests", "version": "0.11.2", "hash": "...."},
{"name": "Django", "version": "1.4", "hash": "..."},
{"name": "pinax", "git": "git://....", "branch": "1.4"},
{"name": "crate", "path": "~/blech", "editable": true}
],
"development": [
{"name": "test", "version": "0.1", "hash": "..."},
{"name": "test2", "version": "2.0", "hash": "..."},
{"name": "another thing", "version": "3.5", "hash": "..."}
],
"testing": [
{"name": "test", "version": "0.1", "hash": "..."}
]
}

Useful Links
------------

Expand Down

0 comments on commit 3431fc0

Please sign in to comment.