Top "Setuptools" questions

Setuptools builds on Python’s distutils to provide easier building, distribution, and installation of libraries and applications.

easy_install lxml on Python 2.7 on Windows

I'm using python 2.7 on Windows. How come the following error occurs when I try to install [lxml][1] using [setuptools][2]'s …

python lxml python-2.7 setuptools easy-install
Do python projects need a MANIFEST.in, and what should be in it?

The "Python Distribute" guide (was at python-distribute.org, but that registration has lapsed) tells me to include doc/txt files …

python setuptools
Python packages and egg-info directories

Can someone explain how egg-info directories are tied to their respective modules? For example, I have the following: /usr/local/…

python setuptools egg
Symbol not found: __PyCodecInfo_GetIncrementalDecoder

Since updating from Homebrew Python 2.7.11 (from 2.7.10) I'm suddenly unable to test register my package on PyPi from the PyCharm IDE …

python python-2.7 pycharm setuptools
setuptools: package data folder location

I use setuptools to distribute my python package. Now I need to distribute additional datafiles. From what I've gathered fromt …

python setuptools
How include static files to setuptools - python package

I want to include the ./static/data.txt to setuptools, here is my code: # setup.py import os,glob from …

python package setuptools
Determining version of easy_install/setuptools

I'm trying to install couchapp, which uses easy_install - and is quite explicit in stating a particular version of …

python setuptools easy-install
Python setuptools import error (Using NetBeans)

I tried to find a question that would answer to this question but wasn't succesful, so I made a new …

python netbeans setuptools importerror
How to write setup.py to include a git repo as a dependency

I am trying to write setup.py for my package. My package needs to specify a dependency on another git …

python django git packaging setuptools
"InvalidRequirement: Invalid requirement, parse error" error after updating a python package

After updating a package (IPython in my case) using pip install -U ipython running any Python script that uses entry …

python pip setuptools