Skip to content

Commit

Permalink
build: Fix run-time dependencies installation (#1457)
Browse files Browse the repository at this point in the history
Fixes #1456
  • Loading branch information
rockstorm101 authored Oct 13, 2024
1 parent 53ce18f commit 6e005a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ classifiers=[
dynamic = [ # these variables are dynamically set at `setup.py`
"version",
"scripts",
"dependencies",
]

[project.urls]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

def get_install_requires():
with open('requirements.txt') as f:
install_requires = f.readlines()
return f.readlines()


def get_version():
Expand Down

0 comments on commit 6e005a3

Please sign in to comment.