Skip to content Skip to sidebar Skip to footer
Showing posts with the label Setuptools

How To Include License File In Setup.py Script?

I have written a Python extension module in C++. I plan to distribute the module with setuptools. T… Read more How To Include License File In Setup.py Script?

Install Module To Site-packages With Setuptools

I'm trying to upload a CLI to PIP that, once installed, will run when the user types myscript M… Read more Install Module To Site-packages With Setuptools

Python Setuptools: How Can I Install Package With Cython Submodules?

I have a python package named pytools. It contains a cython-based submodule nms. When I install the… Read more Python Setuptools: How Can I Install Package With Cython Submodules?

Python Setuptool How Can I Add Dependency For Libxml2-dev And Libxslt1-dev?

My application needs lxml >= 2.1, but to install lxml its requied to install libxml2-dev libxslt… Read more Python Setuptool How Can I Add Dependency For Libxml2-dev And Libxslt1-dev?

Setuptools Platform Specific Dependencies

Is there any way to tell setuptools or distribute to require a package on a specific platform? In … Read more Setuptools Platform Specific Dependencies

Setuptools - Shipping Additional Files

Situation I createt my setup.py file. Most of it works out of the box but I'm having some troub… Read more Setuptools - Shipping Additional Files

When To Use Pip Requirements File Versus Install_requires In Setup.py?

I'm using pip with virtualenv to package and install some Python libraries. I'd imagine w… Read more When To Use Pip Requirements File Versus Install_requires In Setup.py?

How To Create A .dylib C Extension On Mac Os X With Distutils And/or Setuptools?

I need to make a C extension with distutils (and/or setuptools) that can be used BOTH dynamically a… Read more How To Create A .dylib C Extension On Mac Os X With Distutils And/or Setuptools?