Files
ldapuserdir/setup.py
kaminski_k 33893875ce Fix pep8 violations
The only exceptions are lines that are too long and the fact that
__version__ is undefined in setup.py. Fixing the former makes the code
harder to read in some cases, and fixing the latter is slightly more
complicated.
2016-05-24 15:31:35 +02:00

30 lines
963 B
Python

#from setuptools import setup, find_packages
#from distutils.core import setup
# we use the distribute framework that has a backward compatible invocation
# to the setuptools
from setuptools import setup
# we get the package version from inside our package, since we then
# can use it also from within the package
#from ldapuserdir.version import __version__
execfile('ldapuserdir/version.py')
setup(
name="ldapuserdir",
version=__version__,
description="Client for interacting with a LDAP user/group directory service",
long_description="Client for listing user and group information and"
+ " for managing group memberships",
author="Derek Feichtinger",
author_email="derek.feichtinger@psi.ch",
license="GPL",
packages=['ldapuserdir'],
scripts=['bin/ldapuserdir-ctl'],
# following format is (targetdir,[list of files])
data_files=[('etc', ['etc/ldapuserdir-ctl.cfg'])],
install_requires=['python-ldap']
)