ldappr/setup.py

17 lines
409 B
Python
Raw Permalink Normal View History

2014-09-14 17:24:19 +04:00
from distutils.core import setup
2014-09-16 14:56:27 +04:00
with open('README.rst') as fh:
2014-09-14 17:24:19 +04:00
long_description = fh.read()
setup(
name='ldappr',
version='0.1.4',
2014-09-14 17:24:19 +04:00
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
)