On 06 June 2001, Goodger, David said:
> I uncovered one small bug when installing Quixote on MacOS. The setup.py
> file's setup call contains a keyword argument:
>
> package_dir = {'quixote':'.'},
>
> This doesn't work on MacOS, where '.' doesn't mean anything. It's fixed by
> first doing an 'import os' then changing the line to:
>
> package_dir = {'quixote': os.curdir},
>
> This ought to work on all OSes.
An empty string ought to work as well -- ISTR that Distutils
special-cases the empty string to mean "current directory".
Greg
--
Greg Ward - software developer gward@mems-exchange.org
MEMS Exchange http://www.mems-exchange.org