Skip to content

Commit

Permalink
Merge pull request #42 from ylep/depend-on-setuptools
Browse files Browse the repository at this point in the history
Add missing runtime dependency on setuptools
  • Loading branch information
effigies authored Jul 13, 2022
2 parents 0ee7776 + be457d6 commit eb26e67
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,12 @@
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS'],
install_requires=['numpy', 'nibabel', 'nipype'],
install_requires=[
'numpy',
'nibabel',
'nipype',
'setuptools', # needed at runtime (for the pkg_resources module)
],
entry_points={
'console_scripts': [
'pydeface = pydeface.__main__:main'
Expand Down

0 comments on commit eb26e67

Please sign in to comment.