From d38150ac2d95660c3c82a7f556dc097d8112f0b2 Mon Sep 17 00:00:00 2001 From: Koa Wells Date: Thu, 3 Oct 2024 13:05:56 -0500 Subject: [PATCH] Remove build from setup.py and add it to requirements.txt --- requirements.txt | 3 ++- setup.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 8a9cecfc..70d2bd71 100644 --- a/requirements.txt +++ b/requirements.txt @@ -24,4 +24,5 @@ triangle psycopg2-binary Pillow pathlib -sqlalchemy_utils \ No newline at end of file +sqlalchemy_utils +build \ No newline at end of file diff --git a/setup.py b/setup.py index 8af11db8..7c2df9ca 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ with pathlib.Path('requirements.txt').open() as r: for requirement in r.readlines() ] -install_requires.append('setuptools, build') +install_requires.append('setuptools') main_ns = {} version = convert_path('hub/version.py')