Python Forum

Full Version: Unable to import Private Repo using setup.py
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am trying to import the private repo but I am getting an error.

from setuptools import setup, find_packages

setup(
    name = 'MyProject',
    version = '0.1.0',
    url = '',
    description = '',
    packages = find_packages(),
    install_requires = [
        'awsutils @ git+ssh://[email protected]/User1/[email protected]/#egg=awsutils'
        # 'utils @ git+ssh://[email protected]/User1/utils.git/utils.git',
    ],
    dependency_links=[
        'git+ssh://[email protected]/User1/awsutils.git#egg=awsutils-0.0.1'
        # 'git+ssh://[email protected]/User1/utils.git/utils.git#egg=utils-0.0.1',
    ]
)
error: Couldn't find a setup script in /tmp/easy_install-c05djyxv/awsutils.git
Take a look at this,not tired to add a Repo before.