We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Originally reported by: joelmob (Bitbucket: joelmob, GitHub: Unknown)
Using setuptools 7.0 I have this setupfile:
from setuptools import setup setup( name = "karljohan", version = "0.1", package_dir = {"karljohan": "lib"}, packages = ["karljohan"], )
After doing python3 setup.py develop --user 'karljohan' is only available as 'import lib'. I expected beeing able to do 'import karljohan'.
python3 setup.py develop --user
The text was updated successfully, but these errors were encountered:
Original comment by jaraco (Bitbucket: jaraco, GitHub: jaraco):
Duplicate of #230.
Sorry, something went wrong.
No branches or pull requests
Originally reported by: joelmob (Bitbucket: joelmob, GitHub: Unknown)
Using setuptools 7.0 I have this setupfile:
After doing
python3 setup.py develop --user
'karljohan' is only available as 'import lib'. I expected beeing able to do 'import karljohan'.The text was updated successfully, but these errors were encountered: