From f17ca6fd6fae172348ba28f01d6c83c01adb4fb2 Mon Sep 17 00:00:00 2001 From: John Date: Fri, 27 Sep 2024 12:14:12 +1000 Subject: [PATCH] Adding setuptools to requirements Mergining with other changes to requirements --- requirements.txt | 3 +++ setup.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 88d66b2..0ff779a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,3 +4,6 @@ datatest>=0.11.1 gitpython pyyaml fpdf +datatest +gitpython +setuptools diff --git a/setup.py b/setup.py index 8754822..f8fce27 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ name = "projit", packages = ["projit"], license = "MIT", - install_requires = ['numpy', 'pyyaml', 'pandas', 'fpdf', 'gitpython'], + install_requires = ['numpy', 'pyyaml', 'pandas', 'fpdf', 'gitpython', 'setuptools'], entry_points = { "console_scripts": ['projit = projit.cli:main'] },