Skip to content

Instantly share code, notes, and snippets.

Created December 6, 2012 09:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/4223250 to your computer and use it in GitHub Desktop.
Save anonymous/4223250 to your computer and use it in GitHub Desktop.
A small example that shows a glitch with the distutils recipe when using a setuptools setup with a shell script
python-setuptools-glitch/0000775000175100017510000000000012057051426015114 5ustar lukaslukaspython-setuptools-glitch/setup.py0000755000175100017510000000020612057051353016624 0ustar lukaslukas#!/usr/bin/env python
from setuptools import setup
setup(name='test',
version=1,
scripts = ['scripts/runtest'],
)
python-setuptools-glitch/scripts/0000775000175100017510000000000012057051376016607 5ustar lukaslukaspython-setuptools-glitch/scripts/runtest0000664000175100017510000000002612057051376020234 0ustar lukaslukas#!/usr/bin/env python
python-setuptools-glitch_1.0.bb0000664000175100017510000000034112057051463015776 0ustar lukaslukasDESCRIPTION = "A glitch with the distutils recipe when using a setuptools setup with a shell script"
SECTION = "devel/python"
LICENSE = "CLOSED"
SRC_URI = "file://setup-py file://scripts"
S = "${WORKDIR}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment