From c8681eb99f5f0d696f3c16a6aedfb62951186e01 Mon Sep 17 00:00:00 2001 From: Rongxin Liu Date: Tue, 17 Oct 2023 19:41:12 -0400 Subject: [PATCH] install setuptools --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 974151f..79a8cca 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ license="GPLv3", description="This is lib50, CS50's own internal library used in many of its tools.", long_description="This is lib50, CS50's own internal library used in many of its tools.", - install_requires=["attrs>=18.1,<21", "pexpect>=4.6,<5", "pyyaml<7", "requests>=2.13,<3", "termcolor>=1.1,<2", "jellyfish>=0.7,<1", "cryptography>=2.7"], + install_requires=["attrs>=18.1,<21", "pexpect>=4.6,<5", "pyyaml<7", "requests>=2.13,<3", "setuptools", "termcolor>=1.1,<2", "jellyfish>=0.7,<1", "cryptography>=2.7"], extras_require = { "develop": ["sphinx", "sphinx-autobuild", "sphinx_rtd_theme"] },