4 from distutils.core import setup, Extension
6 long_desc = """This is a C extension module for Python which
7 implements extended attributes manipulation. It is a wrapper on top
8 of the attr C library - see attr(5)."""
13 description="Extended attributes for python",
14 long_description=long_desc,
16 author_email="iusty@k1024.org",
17 url="http://pyxattr.sourceforge.net",
19 ext_modules=[Extension("xattr", ["xattr.c"], libraries=["attr"])],