I installed pypiserver behind a nginx proxy that uses htpasswd for authentication. I can currently download sdists, but I cannot figure out how to download them. I want to be able to load them at startup setup.py testand use them in some way pip. Is it possible?
[distutils]
index-servers =
private
[private]
repository = https://example.com/pypi
username = remco
password = mypass
To make it redundant, the server currently uses an unverified ssl connection.
I tried the following setup based on http://pythonhosted.org/setuptools/setuptools.html#setuptools-package-index , but the only documentation on this is "XXX"
from setuptools import setup
setup(
name='asd',
version='0.0.1',
package_index='https://example.com/pypi/simple',
test_suite='test',
tests_require=['foo==0.0.1'])