How do we bundle python dependencies so that it doesn't need to be downloaded when used by others?

Asked a year ago

I'm having a small problem with my Python project - specifically with bundling. How can I ensure that the bundling doesn't cause every dependency in the project to be installed?

Sergio Calhoun

Friday, October 14, 2022

The easiest way to go about bundling python dependencies is using the "setuptools" package. Namely, this is a development process library that helps you manage the packages and dependencies within a project. With it, you can provide a lot of details, like the packages to include in the release version, the project dependencies, project licenses, as well as whether or not the library needs to be downloaded when used by others.





Write an answer...

Cancel

Please follow our  Community Guidelines

Can't find what you're looking for?