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
pdm_build.py
original issue: #245
i want my pdm_build.py to be able to import from other modules in my project, but this doesn't seem to be possible.
# ./foo.py foo = 1
# ./pdm_build.py from foo import foo
but when running pdm install, the foo module seems inaccessible from pdm_build.py:
pdm install
foo
ModuleNotFoundError: No module named 'foo'
a way to make other modules in my project accessible from pdm_build.py
The text was updated successfully, but these errors were encountered:
No branches or pull requests
original issue: #245
Is your feature/enhancement proposal related to a problem? Please describe.
i want my
pdm_build.py
to be able to import from other modules in my project, but this doesn't seem to be possible.but when running
pdm install
, thefoo
module seems inaccessible frompdm_build.py
:Describe the solution you'd like
a way to make other modules in my project accessible from
pdm_build.py
The text was updated successfully, but these errors were encountered: