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

Python Packaging Multiple Subpackages With Different Data Directories

I have a structure of the directory as such with foobar and alphabet data directories together with… Read more Python Packaging Multiple Subpackages With Different Data Directories

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

Python Setuptools And Pbr - How To Create A Package Release Using The Git Tag As The Version?

How do I actually create a release/distro of a python package that uses a git repo tag for the vers… Read more Python Setuptools And Pbr - How To Create A Package Release Using The Git Tag As The Version?

How Can I Use Pbr Version From Source?

My goal: I want to keep coherent versions in my GIT repository, my distribution on pypi repository,… Read more How Can I Use Pbr Version From Source?

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?

Python Setuptools Package_data - Pip Fails On Subfolders

I am trying to make my own pip package installation to work and I have troubles with subfolders in … Read more Python Setuptools Package_data - Pip Fails On Subfolders

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?

Exclude Single Source File From Python Bdist_egg Or Bdist_wheel

Background: I have one source file which is responsible for security. In there are magic keys and s… Read more Exclude Single Source File From Python Bdist_egg Or Bdist_wheel