82208ff5c6
"please yes" landry@ Luma is a graphical utility for accessing and managing data stored on LDAP servers. It is written in Python, using PyQt and python-ldap. Plugin-support is included and useful widgets with LDAP-functionality for easy creation of plugins are delivered. The following plugins are included: Browser, Schema browser, Search, Addressbook, Template, Mass User Creation, Admin Utilities.
18 lines
473 B
Python
18 lines
473 B
Python
# $OpenBSD: setup.py,v 1.1.1.1 2009/08/26 16:53:21 sthen Exp $
|
|
|
|
from distutils.core import setup
|
|
import sys, os
|
|
|
|
setup(
|
|
name = "Luma",
|
|
version = "2.4",
|
|
description = "LDAP browser and utility",
|
|
author = "Wido Depping",
|
|
author_email = "widod@users.sourceforge.net",
|
|
license = "GPL",
|
|
url = "http://luma.sourceforge.net/",
|
|
packages = ('luma',),
|
|
package_dir = {'': 'lib'},
|
|
scripts = ('lib/luma/luma',)
|
|
)
|