Skip to content

Commit

Permalink
Automatically determine requirements from requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
thetestgame committed Nov 12, 2024
1 parent 3d65400 commit ac851d0
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def main() -> int:

# Define some constants
module_name = 'panda3d_astron'

# Run the setup
setup(
name=module_name,
Expand All @@ -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',
])
Expand Down

0 comments on commit ac851d0

Please sign in to comment.