When I try to run setup.py using the command: python setup.py sdist --dist-dir dist
This creates the compressed file under dist folder but when i try to run to code it shows the error that 'No module named slacker found' Although slacker-0.9.24-py2.7.egg is created in my root folder. The directory structure is :
--quality-sanity-checks
-----setup.py
-----notify
       |---<my python files>
from setuptools import setup
    setup(
        name='quality-sanity',
        version='0.0.1-SNAPSHOT',
        description='Service to alert on quality issues',
        download_url='http://gec-maven-nexus.walmart.com/nexus/content/repositories',
        license='proprietary',
        setup_requires=[
            'requests',
            'slacker'
        ],
        install_requires=[
            'requests',
            'slacker'
        ],
        zip_safe='true'
        #dependency_links=['http://github.com/os/slacker/tarball/master#egg=slacker-0.9.24']
    )
 
     
    