Home > Software engineering >  Should I add files from an already published package to my new github project?
Should I add files from an already published package to my new github project?

Time:12-10

let's say I created a python package and published it on my github. Now I want to publish another project based on this package. Should I add the package files to the new repository?

CodePudding user response:

The answer is: No :)

The main reason for creating a package, dependency, library, etc is to re-use it in different projects.

Try importing the package in your other project and if it doesn't work, you can share your code in another question.

  • Related