This repository has been archived by the owner on May 5, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
65 lines (56 loc) · 1.59 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# -*- coding: utf-8 -*-
# Copyright (c) 2009 Gael Pasgrimaud
"""
afpy.ldap
"""
import os
from setuptools import setup, find_packages
version = '1.0'
long_description = """%s
News
=====
%s
""" % (
open(os.path.join('README.txt')).read(),
open(os.path.join('CHANGES.txt')).read()
)
setup(name='afpy.ldap',
version=version,
description="This module provide an easy way to deal with ldap stuff in python.",
long_description='''
afpy.ldap
=========
%s
''' % long_description,
# Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware",
],
keywords='ldap repoze what',
author='Gael Pasgrimaud',
author_email='[email protected]',
url='http://hg.afpy.org/gawel/afpy.ldap/',
license='MIT',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['afpy'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
# -*- Extra requirements: -*-
'ConfigObject',
'dataflake.ldapconnection>=1.2',
],
entry_points="""
# -*- Entry points: -*-
[console_scripts]
ldapsh = afpy.ldap.scripts:main
[paste.app_factory]
test = afpy.ldap.test_auth:make_test_app
[paste.filter_app_factory]
main = afpy.ldap.authbasic:make_auth_basic
afpy = afpy.ldap.authafpy:make_auth
""",
)