From ac851d03c5c3c8546e782c3073e239a869b0183b Mon Sep 17 00:00:00 2001 From: thetestgame Date: Tue, 12 Nov 2024 17:14:38 -0600 Subject: [PATCH] Automatically determine requirements from requirements.txt --- setup.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 4daa54f..39731ea 100644 --- a/setup.py +++ b/setup.py @@ -56,7 +56,7 @@ def main() -> int: # Define some constants module_name = 'panda3d_astron' - + # Run the setup setup( name=module_name, @@ -69,10 +69,7 @@ def main() -> int: maintainer='Jordan Maxwell', url=get_package_url(module_name), packages=find_namespace_packages(), - install_requires=[ - "panda3d", - "panda3d-toolbox" - ], + install_requires=get_requirements(), classifiers=[ 'Programming Language :: Python :: 3', ])