]> git.k1024.org Git - pyxattr.git/blob - setup.py
Improved documentation and added some constants (XATTR_*)
[pyxattr.git] / setup.py
1 #!/usr/bin/env python2
2
3 import distutils
4 from distutils.core import setup, Extension
5
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)."""
9
10 setup(name="pyxattr",
11       version="0.1",
12       description="Extended attributes for python",
13       long_description=long_desc,
14       author="Iustin Pop",
15       author_email="iusty@k1024.org",
16       url="http://pyxattr.sourceforge.net",
17       license="GPL",
18       ext_modules=[Extension("xattr", ["xattr.c"], libraries=["attr"])],
19       )