Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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')
  ]
)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #python #setup #local #whl
ADD COMMENT
Topic
Name
2+6 =