]> git.k1024.org Git - debian-pyxattr.git/blob - setup.py
Merge commit 'upstream/0.3.0'
[debian-pyxattr.git] / setup.py
1 #!/usr/bin/python
2
3 #import distutils
4 #from distutils.core import setup, Extension
5 from setuptools import setup, Extension
6
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)."""
10 version = "0.3.0"
11
12 setup(name = "pyxattr",
13       version = version,
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",
19       license = "LGPL",
20       ext_modules = [Extension("xattr", ["xattr.c"], libraries=["attr"])],
21       test_suite = "test/test_xattr",
22       )