simplified setup

This commit is contained in:
Tarek Ziadé 2011-10-28 17:40:59 +02:00
parent 74a7e54570
commit e1a83be02a
2 changed files with 6 additions and 5 deletions

View File

@ -13,6 +13,8 @@ The pool has useful features like:
- configurable max lifetime for connectors
- a context manager to simplify acquiring and releasing a connector
**You need python-ldap in order to use this library**
Quickstart
::::::::::

View File

@ -33,18 +33,17 @@
# the terms of any one of the MPL, the GPL or the LGPL.
#
# ***** END LICENSE BLOCK *****
from setuptools import setup, find_packages
from distutils import setup
install_requires = ['python-ldap']
with open('README.rst') as f:
README = f.read()
setup(name='ldappool', version='0.9', packages=find_packages(),
setup(name='ldappool', version='0.9',
packages=['ldappool', 'ldappool.tests'],
author='Mozilla Services', author_email='services-dev@mozilla.org',
description="A connection pool for python-ldap",
long_description=README,
url='https://github.com/mozilla-services/ldappool',
install_requires=install_requires)
licence="MPL")