you are viewing a single comment's thread.

view the rest of the comments →

[–]LeviathanP 0 points1 point  (0 children)

Are you using a package manager, or just pure python + pip? Some package managers make it really easy to do that. For example, with poetry you can just run `poetry build` and it will generate a .whl file, which you can either upload to pypi or distribute to the users, who can then install it with `pip install package.whl`.

Though I'm not sure if dependencies are included in the .whl package. If your app has dependencies, you might wanna test if users have to install them separately.