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

How Do You Get Cimport To Work In Cython?

I have a directory structure as so: /my_module init.py A/ __init__.py a.pyx B/ __init__.py … Read more How Do You Get Cimport To Work In Cython?

Why Does "python Setup.py Sdist" Create Unwanted "project-egg.info" In Project Root Directory?

When I run python setup.py sdist it creates an sdist in my ./dist directory. This includes a … Read more Why Does "python Setup.py Sdist" Create Unwanted "project-egg.info" In Project Root Directory?

Why Is An Egg-info File Created When I'm Using Distutils?

Below is my setup.py. I don't use anything from setuptools in my code and my project has no ext… Read more Why Is An Egg-info File Created When I'm Using Distutils?

Pip Freeze Captures The Package Name As If It Was On Python Index Site, But It Is Not. Full Path Is Needed

I installed a package from git hub: pip install -e git+http://github.com/un33k/django-uuslug.git#eg… Read more Pip Freeze Captures The Package Name As If It Was On Python Index Site, But It Is Not. Full Path Is Needed

What Parts Of A Virtualenv Need To Be Changed To Relocate It?

So, I've got a Python program with a ridiculous number of addons/packages. I'd like to be a… Read more What Parts Of A Virtualenv Need To Be Changed To Relocate It?

What's Wrong With This `setup.py`?

I've been having problems withe getting setup.py to do the sdist thing correctly. I boiled it d… Read more What's Wrong With This `setup.py`?

Pybuilder - Non-python Files Are Not Packaged

My current project is in python. For build package generation + unit test running, I'm using Py… Read more Pybuilder - Non-python Files Are Not Packaged

How Do I Package For Distribution A Python Module That Uses A Shared Library?

I'm writing some bindings for a C library and am not sure how to configure all this for distrib… Read more How Do I Package For Distribution A Python Module That Uses A Shared Library?