Doc: Write pipefile description (#3937)

Doc: Write pipefile description
This commit is contained in:
Tapasweni Pathak
2019-09-10 08:51:00 +05:30
committed by Frost Ming
parent 4ab9b96065
commit 7a12dbb5ca
2 changed files with 7 additions and 0 deletions
+6
View File
@@ -10,6 +10,12 @@ This document covers some of Pipenv's more basic features.
☤ Example Pipfile & Pipfile.lock
--------------------------------
Pipfiles contain information for the dependencies of the project, and supercede
the requirements.txt present in Python projects. You should add Pipfile in the
Git repository letting users who clone the repository the only thing required would be
installing Pipenv in the machine and type ``pipenv install``. Pipenv is a reference
implementation for using Pipfile.
.. _example_files:
Here is a simple example of a ``Pipfile`` and the resulting ``Pipfile.lock``.
+1
View File
@@ -0,0 +1 @@
Documental description of how Pipfile works and association with Pipenv.