Answers for "python setup install_requires local whl"

0

python setup install_requires local whl

setup(
  ...,
  install_requires=['my-package'],
  dependency_links=[
    # location to your egg file
    os.path.join(os.getcwd(), 'deps', 'my_package-1.0.0-py3.5.egg')
  ]
)
Posted by: Guest on May-20-2020

Python Answers by Framework

Browse Popular Code Answers by Language