1 from distutils
.core
import setup
, Extension
2 from distutils
.command
import sdist
5 class Sdist(sdist
.sdist
):
6 default_format
= {'posix': 'bztar'}
10 description
='Crude ghosd text hack',
11 author
='Sylvain Fourmanoit',
12 author_email
='syfou@users.berlios.de',
14 ext_modules
=[Extension('_ghosd',
18 popen("pkg-config --cflags ghosd").read().split(),
20 popen("pkg-config --libs ghosd").read().split()
25 cmdclass
= {'sdist' : Sdist
}