From 2e6d07b21790661157d4a8eba1d92421e2454edd Mon Sep 17 00:00:00 2001
From: David Barnes <barnesdavidj@gmail.com>
Date: Tue, 28 Jun 2022 10:59:44 -0400
Subject: [PATCH] Update docs to reflect using pypi to install over github.

---
 README.md                  | 8 ++------
 docs/source/quickstart.rst | 4 ++--
 2 files changed, 4 insertions(+), 8 deletions(-)

diff --git a/README.md b/README.md
index 7df00fd..8fe2e44 100644
--- a/README.md
+++ b/README.md
@@ -21,13 +21,9 @@ and [Symfony](https://symfony.com/) frameworks.
 ![dd_sample_output](https://user-images.githubusercontent.com/4390026/173413467-afcea349-a28b-42c0-bd18-5922df17b453.png)
 
 ## Quickstart
-1.  Install the Django App via GitHub for now. Working on getting on Pypi soon.
+1.  Install the Django App via Pypi.
     ```shell
-    python -m pip install -e git+https://github.com/DJBarnes/django-dump-die@master
-    ```
-    or
-    ```shell
-    pipenv install -e "git+https://github.com/DJBarnes/django-dump-die#egg=django-dump-die"
+    python -m pip install django-dump-die
     ```
 
 <br>
diff --git a/docs/source/quickstart.rst b/docs/source/quickstart.rst
index e326db2..a9e3bdb 100644
--- a/docs/source/quickstart.rst
+++ b/docs/source/quickstart.rst
@@ -1,11 +1,11 @@
 Quickstart
 **********
 
-1.  Install the Django App via GitHub for now. Working on getting on Pypi soon.
+1.  Install the Django App via Pypi.
 
     .. code-block:: bash
 
-        python -m pip install -e git+https://github.com/DJBarnes/django-dump-die@master
+        python -m pip install django-dump-die
 
 
 2.  Add the corresponding app to your Django ``settings.py`` file:
-- 
GitLab