4 #from distutils.core import setup, Extension
5 from setuptools import setup, Extension
7 long_desc = """This is a C extension module for Python which
8 implements extended attributes manipulation. It is a wrapper on top
9 of the attr C library - see attr(5)."""
12 setup(name = "pyxattr",
14 description = "Filesystem extended attributes for python",
15 long_description = long_desc,
16 author = "Iustin Pop",
17 author_email = "iusty@k1024.org",
18 url = "http://pyxattr.sourceforge.net",
20 ext_modules = [Extension("xattr", ["xattr.c"], libraries=["attr"])],
21 test_suite = "test/test_xattr",