Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #65389 > unrolled thread

Advice needed for Python packaging - can't find required library during installation

Started bythebiggestbangtheory@gmail.com
First post2014-02-03 15:33 -0800
Last post2014-02-04 07:01 -0800
Articles 3 — 2 participants

Back to article view | Back to comp.lang.python


Contents

  Advice needed for Python packaging - can't find required library during installation thebiggestbangtheory@gmail.com - 2014-02-03 15:33 -0800
    Re: Advice needed for Python packaging - can't find required library during installation dieter <dieter@handshake.de> - 2014-02-04 08:30 +0100
      Re: Advice needed for Python packaging - can't find required library during installation thebiggestbangtheory@gmail.com - 2014-02-04 07:01 -0800

#65389 — Advice needed for Python packaging - can't find required library during installation

Fromthebiggestbangtheory@gmail.com
Date2014-02-03 15:33 -0800
SubjectAdvice needed for Python packaging - can't find required library during installation
Message-ID<14a9fb0b-75a8-4d22-8c5b-75b1bf02493e@googlegroups.com>
Hello all,

I am trying to package up a very simple python app. In my setup.py file I have a couple of lines that include the following:

from setuptools import setup

setup(
        name='ban',
        version='0.1',
        packages=['ban',],
        description='Python Distribution Utilities',
        author='Ban',
        author_email='ban@tbbt.com',
        package_data={'ban': ['data/*.dat']},
        long_description=open('README.txt').read(),
        install_requires=['Google-Safe-Browsing-v2-Lookup'],
)


The error I see when running:
$> python setup.py install

***************************
running install
running bdist_egg
running egg_info
writing requirements to ban.egg-info/requires.txt
writing ban.egg-info/PKG-INFO
writing top-level names to ban.egg-info/top_level.txt
writing dependency_links to ban.egg-info/dependency_links.txt
reading manifest file 'ban.egg-info/SOURCES.txt'
writing manifest file 'ban.egg-info/SOURCES.txt'
installing library code to build/bdist.linux-x86_64/egg
running install_lib
running build_py
creating build
creating build/lib.linux-x86_64-2.6
creating build/lib.linux-x86_64-2.6/ban
copying ban/analyzer.py -> build/lib.linux-x86_64-2.6/ban
copying ban/__init__.py -> build/lib.linux-x86_64-2.6/ban
creating build/bdist.linux-x86_64
creating build/bdist.linux-x86_64/egg
creating build/bdist.linux-x86_64/egg/ban
copying build/lib.linux-x86_64-2.6/ban/analyzer.py -> build/bdist.linux-x86_64/egg/ban
copying build/lib.linux-x86_64-2.6/ban/__init__.py -> build/bdist.linux-x86_64/egg/ban
byte-compiling build/bdist.linux-x86_64/egg/ban/analyzer.py to analyzer.pyc
byte-compiling build/bdist.linux-x86_64/egg/ban/__init__.py to __init__.pyc
creating build/bdist.linux-x86_64/egg/EGG-INFO
copying ban.egg-info/PKG-INFO -> build/bdist.linux-x86_64/egg/EGG-INFO
copying ban.egg-info/SOURCES.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying ban.egg-info/dependency_links.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying ban.egg-info/requires.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying ban.egg-info/top_level.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
zip_safe flag not set; analyzing archive contents...
creating dist
creating 'dist/ban-0.1-py2.6.egg' and adding 'build/bdist.linux-x86_64/egg' to it 
removing 'build/bdist.linux-x86_64/egg' (and everything under it)
Processing ban-0.1-py2.6.egg
removing '/usr/local/lib/python2.6/dist-packages/ban-0.1-py2.6.egg' (and everything under it)
creating /usr/local/lib/python2.6/dist-packages/ban-0.1-py2.6.egg
Extracting ban-0.1-py2.6.egg to /usr/local/lib/python2.6/dist-packages
ban 0.1 is already the active version in easy-install.pth

Installed /usr/local/lib/python2.6/dist-packages/ban-0.1-py2.6.egg
Processing dependencies for ban==0.1
Searching for Google-Safe-Browsing-v2-Lookup
Reading http://pypi.python.org/simple/Google-Safe-Browsing-v2-Lookup/
No local packages or download links found for Google-Safe-Browsing-v2-Lookup
error: Could not find suitable distribution for Requirement.parse('Google-Safe-Browsing-v2-Lookup')
**************************

Issue #1

Apparently the setup script cannot find the package - Google-Safe-Browsing-v2-Lookup . However, I can install this package via pip. 

What should I specify in the setup.py file instead of install_requires=['Google-Safe-Browsing-v2-Lookup'] so that the library is properly installed ?


Any advice is appreciated.

[toc] | [next] | [standalone]


#65409

Fromdieter <dieter@handshake.de>
Date2014-02-04 08:30 +0100
Message-ID<mailman.6381.1391499012.18130.python-list@python.org>
In reply to#65389
thebiggestbangtheory@gmail.com writes:

> I am trying to package up a very simple python app. In my setup.py file I have a couple of lines that include the following:
>
> from setuptools import setup
>
> setup(
>         name='ban',
>         version='0.1',
>         packages=['ban',],
>         description='Python Distribution Utilities',
>         author='Ban',
>         author_email='ban@tbbt.com',
>         package_data={'ban': ['data/*.dat']},
>         long_description=open('README.txt').read(),
>         install_requires=['Google-Safe-Browsing-v2-Lookup'],
> )
> ...
> Processing dependencies for ban==0.1
> Searching for Google-Safe-Browsing-v2-Lookup
> Reading http://pypi.python.org/simple/Google-Safe-Browsing-v2-Lookup/
> No local packages or download links found for Google-Safe-Browsing-v2-Lookup
> error: Could not find suitable distribution for Requirement.parse('Google-Safe-Browsing-v2-Lookup')
> **************************
>
> Issue #1
>
> Apparently the setup script cannot find the package - Google-Safe-Browsing-v2-Lookup . However, I can install this package via pip. 
>
> What should I specify in the setup.py file instead of install_requires=['Google-Safe-Browsing-v2-Lookup'] so that the library is properly installed ?

I suppose that "setuptools" is confused by the "-" in the package
names together with these "-" being omitted in the uploaded file
(https://pypi.python.org/packages/source/G/Google-Safe-Browsing-v2-Lookup/Google%20Safe%20Browsing%20v2%20Lookup-0.1.0.tar.gz5").

If this supposition is correct, then you would either need to
contact the "setuptools" author (to get "setuptools" handle this case)
or the "Google Safe Browsing" author to get a filename more
in line with the package name.

[toc] | [prev] | [next] | [standalone]


#65428

Fromthebiggestbangtheory@gmail.com
Date2014-02-04 07:01 -0800
Message-ID<3758bc8c-97bc-4d3a-af10-425972eaf3a7@googlegroups.com>
In reply to#65409
Thank you very much! :-)

On Monday, February 3, 2014 11:30:00 PM UTC-8, dieter wrote:
> thebiggestbangtheory@gmail.com writes:
> 
> 
> 
> > I am trying to package up a very simple python app. In my setup.py file I have a couple of lines that include the following:
> 
> >
> 
> > from setuptools import setup
> 
> >
> 
> > setup(
> 
> >         name='ban',
> 
> >         version='0.1',
> 
> >         packages=['ban',],
> 
> >         description='Python Distribution Utilities',
> 
> >         author='Ban',
> 
> >         author_email='ban@tbbt.com',
> 
> >         package_data={'ban': ['data/*.dat']},
> 
> >         long_description=open('README.txt').read(),
> 
> >         install_requires=['Google-Safe-Browsing-v2-Lookup'],
> 
> > )
> 
> > ...
> 
> > Processing dependencies for ban==0.1
> 
> > Searching for Google-Safe-Browsing-v2-Lookup
> 
> > Reading http://pypi.python.org/simple/Google-Safe-Browsing-v2-Lookup/
> 
> > No local packages or download links found for Google-Safe-Browsing-v2-Lookup
> 
> > error: Could not find suitable distribution for Requirement.parse('Google-Safe-Browsing-v2-Lookup')
> 
> > **************************
> 
> >
> 
> > Issue #1
> 
> >
> 
> > Apparently the setup script cannot find the package - Google-Safe-Browsing-v2-Lookup . However, I can install this package via pip. 
> 
> >
> 
> > What should I specify in the setup.py file instead of install_requires=['Google-Safe-Browsing-v2-Lookup'] so that the library is properly installed ?
> 
> 
> 
> I suppose that "setuptools" is confused by the "-" in the package
> 
> names together with these "-" being omitted in the uploaded file
> 
> (https://pypi.python.org/packages/source/G/Google-Safe-Browsing-v2-Lookup/Google%20Safe%20Browsing%20v2%20Lookup-0.1.0.tar.gz5").
> 
> 
> 
> If this supposition is correct, then you would either need to
> 
> contact the "setuptools" author (to get "setuptools" handle this case)
> 
> or the "Google Safe Browsing" author to get a filename more
> 
> in line with the package name.

[toc] | [prev] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web