1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
#!/usr/bin/env python
import os
from setuptools import setup, Extension
(u_sysname, u_nodename, u_release, u_version, u_machine) = os.uname()
macros = []
libs = []
if u_sysname == "Linux":
macros.append(("HAVE_LINUX", None))
macros.append(("HAVE_LEVEL2", None))
libs.append("acl")
elif u_sysname == "GNU/kFreeBSD":
macros.append(("HAVE_LINUX", None))
macros.append(("HAVE_LEVEL2", None))
macros.append(("HAVE_ACL_COPY_EXT", None))
libs.append("acl")
elif u_sysname == "FreeBSD":
macros.append(("HAVE_FREEBSD", None))
if u_release.startswith("7."):
macros.append(("HAVE_LEVEL2", None))
elif u_sysname == "Darwin":
libs.append("pthread")
elif u_sysname == "GNU":
macros.append(("HAVE_LINUX", None))
macros.append(("HAVE_LEVEL2", None))
libs.append("acl")
else:
raise ValueError("I don't know your system '%s'."
" Please contact the author" % u_sysname)
long_desc = """This is a C extension module for Python which
implements POSIX ACLs manipulation. It is a wrapper on top
of the systems's acl C library - see acl(5)."""
version = "0.5.0"
setup(name="pylibacl",
version=version,
description="POSIX.1e ACLs for python",
long_description=long_desc,
author="Iustin Pop",
author_email="iusty@k1024.org",
url="http://pylibacl.sourceforge.net/",
license="LGPL",
ext_modules=[Extension("posix1e", ["acl.c"],
libraries=libs,
define_macros=macros,
)],
test_suite="tests",
)
|