17 lines
409 B
Python
17 lines
409 B
Python
from distutils.core import setup
|
|
|
|
with open('README.rst') as fh:
|
|
long_description = fh.read()
|
|
|
|
setup(
|
|
name='ldappr',
|
|
version='0.1.4',
|
|
packages=['ldappr', 'ldappr.test'],
|
|
url='https://github.com/nanu2/ldappr',
|
|
license='ICS',
|
|
author='Mike Helderman',
|
|
author_email='mike.helderman@gmail.com',
|
|
description='Wrapper around python-ldap.',
|
|
long_description=long_description
|
|
)
|