Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

"Did not find any scripts. Uninstalling." (only with --editable), take 3 #154

Open
dagostinelli opened this issue Jun 4, 2018 · 1 comment

Comments

@dagostinelli
Copy link

dagostinelli commented Jun 4, 2018

I'm having a similar problem to #40 and #149. Here's a specific situation where it fails:

setup.py

from setuptools import setup, find_packages

setup_options = dict(
	<snip>
	entry_points = {
		'console_scripts': [
			'myapp = mypackage.cli:main',
		]
	}
)

setup(**setup_options)

Then

python3 setup.py sdist
python3 setup.py bdist
python3 setup.py bdist_wheel

Produces

/dist/mypackage-1.0.0.linux-x86_64.tar.gz
/dist/mypackage-1.0.0.tar.gz
/dist/mypackage-1.0.0-py3-none-any.whl

Works
pipsi install .

Works
pip install .

Works
pip install mypackage-1.0.0-py3-none-any.whl

Fails
pipsi install mypackage-1.0.0-py3-none-any.whl

The error is Did not find any scripts. Uninstalling.

pipsi hates the wheel file.

@tkossak
Copy link

tkossak commented Jul 10, 2018

I have the same problem. I'm using console_scripts with my setup.py, pip installs the wheel and all entry points properly, but pipsi just doesn't see them. Any solution to this?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants