The Python Package Index (PYPI) is a repository of software for the Python programming language.

learn more… | top users | synonyms

1
vote
1answer
16 views

Development version on PyPI

In this 2011 post, it is argued that dev versions should not be uploaded to PyPI. Is this now (May 2013) still the case? If not, what is the suggested way to distribute development version of a Python ...
2
votes
1answer
41 views

Python pip --index-url Not Limiting Repository Search

I'm trying to instruct pip to install packages using only a local repository (on a different server in my internal network). The requirement is that remote repositories (like pypi) should never be ...
1
vote
1answer
21 views

Can I use WordPress to power a PyPI documentation page?

You can upload documentation to run alongside a package on PyPI, but i was wondering if those docs could be hosted using WordPress. The requirements call for a recent copy of PHP and a MySQL database. ...
1
vote
1answer
15 views

How to tell tox to use PyPI mirrors for installing packages?

Is there a way to tell the tox test automation tool to use the PyPI mirrors while installing all packages (explicit testing dependencies in tox.ini and dependencies from setup.py)? For example, pip ...
2
votes
3answers
33 views

What to include in PyPi package?

I'm packaging my new python library for PyPi. The repository contains: Sphinx documentation sources Supplemental JavaScript library Examples Is it a good idea to include such things into a python ...
1
vote
1answer
14 views

How do you configure pypi under Windows?

On my Mac, *nix based systems I configure pip by modifying the files: ~/.pypirc ~/.pip/pip.conf The documentation that I've found so far, says that under windows you need to set the HOME ...
1
vote
2answers
38 views

My rst README is not formatted on pypi.python.org

When I submit my package to the Python Package Index (https://pypi.python.org/pypi) my README file, which is written with valid reStructuredText and saved as README.rst, is displayed as plain text ...
1
vote
2answers
72 views

Can pip install a python egg via a local package tar.gz file

In my dev environment, due to some networking problems, when I run: (my-virt-env)$ pip install lxml It always fails due to: Downloading/unpacking lxml Downloading lxml-3.1.2.tar.gz (3.3Mb): ...
0
votes
1answer
33 views

release code in Pypi

I want set my package to Pypi. When I run python setup.py sdist bdist_wininst upload occur this error: File "setup.py", line 8, in <module> long_description=open('README.txt').read(), ...
0
votes
2answers
34 views

How do you upload a gzip package to PyPI on Windows

On Windows, I have uploaded a package using the following command: python setup.py sdist bdist_wininst upload However, due to my using Python on Windows, it uploads a zip file instead of a gzip ...
0
votes
1answer
160 views

Why does pip fail with bad md5 hash for package?

I'm trying to install Django package in a virtualenv. I'm on a new computer (OSX 10.8.2). I installed virtualenv via easy_install. With the virtualenv activated, I ran: (pyenv)$ pip install Django ...
1
vote
1answer
14 views

Python PIP not showing pypi package

Short Question Is there a delay between when a package is added to PyPi and its availability via pip? Background I have recently pushed a package up to PyPi. From what I tell there were no ...
1
vote
2answers
79 views

Python package dependency tree

I would like to analyze the dependency tree of Python packages. How can I obtain this data? Things I already know setup.py sometimes contains a requires field that lists package dependencies PyPi ...
0
votes
0answers
18 views

How to list all Python packages with a certain requirement from PyPi?

This is useful in finding the popularity and usage scenarios of a certain. For example, I would like to list all packages requiring httplib2. Yes "googling" can work but it's very tedious and not ...
1
vote
1answer
63 views

How to download packages with pypi?

I know that in order to install a package I need to execute: sudo pip install package_name But how can I know what is the name of package - I should give as an argument. I found in pypi a package ...
0
votes
1answer
47 views

How to include package sub-folders in my project distribution?

I have a project with this structure: SomeProject/ bin/ CHANGES.txt docs/ LICENSE.txt MANIFEST.in README.txt setup.py someproject/ __init__.py ...
6
votes
4answers
340 views

PyPI is slow. How do I run my own server?

When a new developer joins the team, or Jenkins runs a complete build, I need to create a fresh virtualenv. I often find that setting up a virtualenv with Pip and a large number (more than 10) of ...
1
vote
1answer
130 views

PyPI upload stopped working and pip install fails

I submitted my first PyPI project last night and things are not working as expected (warning long post ahead)... I originally uploaded the project, cvrfparse, via the commandline by doing: % python ...
1
vote
1answer
42 views

How to include projects in personal SCM repositories (not in pypi) to setup.py?

What's the idiomatic way to build python projects that depend on projects in other source control repositories (e.g private projects not on pypi)? Let's say I have a project foobar hosted at ...
0
votes
1answer
114 views

Windows / PyPi / PyCharm linker errors when compiling some cython modules

currently, i am working with PyCharm on Windows, and i tried to install some packages via PyPi. For convinience, i used the integrated functionality of PyCharm, which does essentially the same as the ...
0
votes
0answers
103 views

setuptools, easy_install, and a custom pypi server

I've got a custom pypi server running and am wondering how to point all references to https://pypi.python.org/ from there to my custom server? I want to be able to cover cases of a user calling ...
1
vote
1answer
33 views

Upload package without source to pypi repo

Apologies if this has been asked before but I couldn't for the life of me find an answer to what seems (to me) like a very basic question. I have a set of .egg packages that do not contain the source ...
-1
votes
1answer
92 views

Is there any way to install libvirt using pip

I want to use libvirt, I'm testing with the debian package right now, but I want to use this inside a virtualenv, there is nothing in pypi either github. Does anyone knows about any public repo with ...
0
votes
1answer
235 views

Setting up a local PyPi server with custom set of packages

I want to set up a local PyPi server with a custom set of packages and all their dependencies. What I have right now is a list of packages in format: django==1.4.3 celery==3.0.12 uwsgi==1.2.6 ...
0
votes
2answers
49 views

How restrict read access to djangopypi2?

I need to set up a private PyPI repository. I've realized there are a lot of them to choose from, and after surfing around, I chose djangopypi2 since I found their installation instructions the ...
5
votes
2answers
78 views

how to package a django project?

How can i package a project so that i can just call some function that runs the project? I know how to package a django app, but my question is how to package a django project. Currently i have my ...
0
votes
0answers
43 views

Why does pip ask for bitbucket credentials?

I'm trying to use pip to do a test install of a package I just uploaded to PyPi and pip is asking for my bitbucket credentials. Can anyone explain why it does this? I entered by username but just ...
1
vote
1answer
153 views

python manage.py runserver: AttributeError: 'module' object has no attribute 'select'

After running the command, the following displays : Validating models... 0 errors found Django version 1.4.3, using settings 'app.settings' Development server is running at localhost:8000/ Quit ...
3
votes
1answer
83 views

how to set bug tracker url in setup.py script

I have just discovered the pypi web UI have a field 'Bug tracker URL' in edit of egg metadata. This field exists so I guess it is supported in setup.py but I can't find anything about this using ...
2
votes
1answer
24 views

Should I prepare eggs and zip in addition to tarball for PyPI?

I'm preparing my first package distribution for PyPI using setuptools etc. I've gotten the source distribution (.tar.gz) working well and now I'm wondering whether I should provide any other formats, ...
0
votes
1answer
131 views

How can I install a private module with public dependencies in pip?

I've found a few answers that relate to dependency_links but they unfortunately have yet to work for me. I'm writing a python module. It's stored in a private pypi repo, and relies on a few ...
1
vote
2answers
68 views

PyPi Server Response 500

I'm trying to regsiter my package on PyPi, with the following command: pyton setup.py register But it results in the following error: Server response (500): <urlopen error [Errno -2] Name or ...
0
votes
0answers
156 views

set up local pypi mirror with pep381run, but it attempt to connect internet while install pacakges

I have set up a local pypi mirror in the local with pepe381 run /usr/local/bin/pep381run /data/mirrors/pypi but when i install packages from local pypi mirror, it firstly attempt to connect to ...
1
vote
1answer
69 views

Django Buildout recipe for pywhois (not on pypi)

I Am trying to create a buildout recipe for pywhois on google code. The site of which is here: http://code.google.com/p/pywhois/ Note: if you use easy_install pywhois it installs another package ...
1
vote
1answer
57 views

How to extract dependencies from a PyPi package

my goal is simple, i want to get the dependency of a PyPi package remotely without needing to download it completely. I seem to understand (reading the pip code) that pip when resolving dependencies ...
1
vote
1answer
86 views

Why is setup.py failing when I try to register with pypi?

I'm having a bit of trouble getting my latest project registered with PyPI, and I'm hoping one of you guys can tell me what I'm doing wrong. My directory is structured as follows: Scrappy/ |-- ...
0
votes
1answer
42 views

What index is buildout really using?

I'm trying to install couchdbkit using following buildout config: [buildout] parts = eggs include-site-packages = false versions = versions [eggs] recipe = zc.recipe.egg:eggs eggs = couchdbkit ...
1
vote
0answers
49 views

How do I include a tarball or svn dependency in setup.py?

I have a project that has python-xlib as a requirement. Unfortunately python-xlib is not on pypi, so in my requirements file I use: ...
1
vote
1answer
91 views

Update a PyPi package

Is there a way to update a PyPi package without changing the version number? Imagine, for a second, that I've found a small bug in a package I recently uploaded to PyPi. Is there a way to ...
0
votes
0answers
31 views

Python Pypi Upload Error: win32.exe: No such file or directory

I'm creating a package to upload to pypi, but when I run the upload command, I get at the end en error message like this: error: dist/MYPACKAGE-VERSION.win32.exe: No such file or directory I have ...
1
vote
1answer
118 views

how to include django templates in app installed via pip?

I'm working on a django app (django-flux) and I'm trying to get it to properly install with pip from pypi. From this blog post and the distutils documentation, it seems like my setup.py and ...
0
votes
1answer
65 views

Why are files missing when I upload an egg to pypi?

Following the instructions on http://plone.org/documentation/kb/how-to-upload-your-package-to-plone.org/distuttils-commands-and-.pypirc, I uploaded an egg to pypi (adi.workingcopyflag).The created egg ...
0
votes
0answers
74 views

Building and installing binary distributions of python packages

I have a project that gets deployed with an rpm, but building the rpm is taking longer than desired and I'm looking to optimize by pre-building some python binaries. However I can't get them to ...
0
votes
0answers
54 views

Where to get the PyPI packages ranking order by download times?

I didn't find it in the official site. And I googled and got this: http://pypi-ranking.info/alltime But I don't know the accuracy of the list here and it doesn't say this is order by direct ...
0
votes
1answer
72 views

Use setuptools to install from location

I have a framework for a site that I want to use in multiple projects but I don't want to submit my framework to PyPi. Is there anyway I can tell my setup.py to install the framework from a specific ...
0
votes
2answers
468 views

how to install package with pypi in python 2.7?

this problem, I have when try install package netstat with pypi [opmeitle@localhost ~]$ sudo pip install netstat [sudo] password for opmeitle: Downloading/unpacking netstat Running setup.py ...
1
vote
1answer
106 views

Getting setuptools to ignore PyPI repository

I have in my packages setup.py: from setuptools import setup setup( dependency_links=['http://local.mirror'], install_requires=[ 'many', 'different', 'packages', ...
0
votes
2answers
117 views

How to create new pubsubhub rss from existing “normal” rss?

I'd like to create a new real-time RSS feed using pubsubhubbub by processing an existing RSS feed which i cannot easily change. Is there a tool or approach which makes this easy? The RSS feed which ...
0
votes
1answer
97 views

Asynchronous tasks in Plone to query Python Package Index

I want to periodically (every hour?) query the Python Package Index API from Plone. Something equivalent to: $ for i in `yolk -L 24 | awk '{print $1}'` # get releases made in last 24 hours do # ...
3
votes
0answers
44 views

How to get PIP package statistics from PyPi [duplicate]

Possible Duplicate: Number of installations statistics for PyPI packages? I wrote a very simple python app that's packaged to be available in DjangoPackages.com, PyPi, and Github. Is there ...

1 2 3