From 119e9558745e8d6b386357375d62008469d3f1f0 Mon Sep 17 00:00:00 2001 From: Anthony Correa Date: Mon, 21 Nov 2022 07:11:29 -0600 Subject: [PATCH] add collection-json to setup requirements fix git+https issue in setup.py --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9c3bc77..30feccc 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,10 @@ with open('README.rst') as readme_file: with open('HISTORY.rst') as history_file: history = history_file.read() -requirements = ['api-client', 'typing-extensions', 'git+https://github.com/anthonyscorrea/collection-json.python.git#egg=collection-json'] +requirements = [ + 'api-client', + 'typing-extensions', + 'collection-json @ git+https://github.com/anthonyscorrea/collection-json.python.git'] test_requirements = [ ]