Skip to content

Commit

Permalink
Require setuptools in setup.py (#1526)
Browse files Browse the repository at this point in the history
This change adds setuptools as a dependency in setup.py. This ensures that it will be present in all environments after install, since it is a runtime dependency.
  • Loading branch information
jncraton authored Nov 14, 2023
1 parent 1e37b52 commit 318cd94
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ def _maybe_add_library_root(lib_name):
ext_modules=[ctranslate2_module],
python_requires=">=3.8",
install_requires=[
"setuptools",
"numpy",
"pyyaml>=5.3,<7",
],
Expand Down

0 comments on commit 318cd94

Please sign in to comment.