Skip to content

Commit

Permalink
Add missing setuptools dependency
Browse files Browse the repository at this point in the history
setuptools contains pkg_resources which we use to retrieve a resource
path.

Refs #123
  • Loading branch information
Matoking committed Nov 13, 2021
1 parent 37958e4 commit 2911010
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@
"setuptools_scm<6 ; python_version <= '3.5'",
"setuptools_scm ; python_version > '3.5'"
],
install_requires=["vdf>=3.2"],
install_requires=[
"setuptools", # Required for pkg_resources
"vdf>=3.2"
],
entry_points={
"console_scripts": [
"protontricks = protontricks.cli.main:cli",
Expand Down

0 comments on commit 2911010

Please sign in to comment.