From b687224d4af414321ab560cf5bb2d35ba31092b7 Mon Sep 17 00:00:00 2001
From: Biyeun Buczyk <biyeun@dimagi.com>
Date: Mon, 25 Jul 2022 14:22:52 +0200
Subject: [PATCH] move beaker to an optional requirement under examples

---
 Makefile | 2 +-
 setup.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile
index ee653f1bf..20bfff522 100644
--- a/Makefile
+++ b/Makefile
@@ -35,7 +35,7 @@ livehtml:
 .PHONY: livehtml
 
 install:
-	@pipenv install --dev -e .[develop,testing,docs,quality,ldap_authn]
+	@pipenv install --dev -e .[develop,testing,docs,quality,ldap_authn,examples]
 .PHONY: install
 
 test:
diff --git a/setup.py b/setup.py
index 60a7183a6..0062c05cd 100755
--- a/setup.py
+++ b/setup.py
@@ -81,13 +81,13 @@ def run_tests(self):
         'quality': ['pylama', 'isort', 'eradicate', 'mypy', 'black', 'bandit', 'readme_renderer[md]'],
         'types': ['types-requests'],
         'ldap_authn': ['python-ldap'],
+        'examples': ['beaker'],
     },
     install_requires=[
         "requests",
         "pycryptodomex",
         "pyjwkest>=1.3.6",
         "mako",
-        "beaker",
         "cryptography",
         "defusedxml",
         "typing_extensions",