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
with py2deb there is an option to add prefix to package name,
for example if i have pacakage named foo i can added prefix mypackage to it mypackage-foo
foo
mypackage-foo
i have managed to modify suggest_name function so that package name returned with the prefix
but the issue i am facing is in depends if package has dependencies it didn't add with prefix
Depends: python3 (>= 3.6~), boo # here boo added without the prefix
Depends: python3 (>= 3.6~), boo
The text was updated successfully, but these errors were encountered:
No branches or pull requests
with py2deb there is an option to add prefix to package name,
for example if i have pacakage named
foo
i can added prefix mypackage to itmypackage-foo
i have managed to modify suggest_name function so that package name returned with the prefix
but the issue i am facing is in depends if package has dependencies it didn't add with prefix
Depends: python3 (>= 3.6~), boo
# here boo added without the prefixThe text was updated successfully, but these errors were encountered: