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

How to package independently pyd #2828

Closed
monkeycc opened this issue Apr 27, 2024 · 1 comment
Closed

How to package independently pyd #2828

monkeycc opened this issue Apr 27, 2024 · 1 comment
Assignees
Labels
question Question asked about Nuitka

Comments

@monkeycc
Copy link

project/
│
├── main.py
│
└── app/
    ├── module1.pyd
    ├── module2.pyd
    └── module3.pyd
    └── module4.pyd
import os
import app


def main():
    app.run()


if __name__ == "__main__":
    main()

How to package independently --standalone

@kayhayen
Copy link
Member

If you program doesn't use them explicitely, use --include-module to force inclusions.

@kayhayen kayhayen self-assigned this Apr 28, 2024
@kayhayen kayhayen added the question Question asked about Nuitka label Apr 28, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Question asked about Nuitka
Projects
None yet
Development

No branches or pull requests

2 participants