]> git.k1024.org Git - pyxattr.git/blob - setup.py
Fixed names again, and switched parsing of int and files to PyObject_AsFileDescriptor
[pyxattr.git] / setup.py
1 #!/usr/bin/env python2
2
3 import distutils
4 from distutils.core import setup, Extension
5
6 setup(name="pyxattr",
7       version="0.1",
8       description="Extended attributes for python",
9       long_description="""This is a C extension module for Python which
10       implements extended attributes manipulation. It is a wrapper on top
11       of the attr C library - see attr(5).""",
12       author="Iustin Pop",
13       author_email="iusty@k1024.org",
14       ext_modules=[Extension("xattr", ["xattr.c"], libraries=["attr"])],
15       )