I am trying to configure a setuptools.setup script. PyPI packages works fine but I don't manage to install the 'mypackage' module from my svn repository. I get the error:
Couldn't find index page for 'myotherpackage' (maybe misspelled?)
- Did I forget something important concerning the dependency_links parameter?
- Are the provided parameters (see below) ok?
setup.py
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
version = '2.5'
setup(name='myotherpackage',
description='My main package called myotherpackage',
packages=find_packages(),
version=version,
zip_safe=False,
include_package_data=True,
install_requires=['nose','tweepy','myotherpackage'],
dependency_links=['https://code.myrep.net/svn/experimenta/user/myotherpackage/'],
test_suite='nose.collector',
test_require = 'nose',
)