"pip install wheelpackagename" copying few files to specified location (package is in local pypi server)

1.5k Views Asked by At

When I do "pip install wheel-package-name" I want few of files inside package go to specified folder location and few other files to some other specified location. package is in local PyPI server. I have tried many ways not getting options for this.

1

There are 1 best solutions below

4
On

You will have to re-structure the packaging configuration. So you might have to expand your wheel, tarball or whatever you're working with (wheel is just a compressed file too) and re-do the packaging so you can send the files to the folders you want. Take a look here: setuptools: package data folder location