I need some help concerning setuptools
.
My setup.py
looks like this:
setup(
...
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts': [
'vsam = vsam.cmdline:execute',
]
},
...
)
If I run python setup.py develop
, the specified console script gets properly created. Running python setup.py sdist
and installing the source distribution with pip install
also creates the entry point.
But running python setup.py install
does not create a console script.
Can anyone tell me why? If anyone needs more information, feel free to ask.
Ok, I found out what was preventing
setuptools
from creating entry points. MyMANIFEST.in
file contained the line:After removing it, everything works fine.