forked from collective/pas.plugins.ldap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
82 lines (79 loc) · 2.32 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
import os
from setuptools import (
setup,
find_packages,
)
version = '1.5.2.dev0'
shortdesc = "LDAP/AD Plugin for Plone/Zope PluggableAuthService (users+groups)"
longdesc = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
longdesc += open(os.path.join(os.path.dirname(__file__), 'TODO.rst')).read()
longdesc += open(os.path.join(os.path.dirname(__file__), 'CHANGES.rst')).read()
longdesc += open(os.path.join(os.path.dirname(__file__), 'LICENSE.rst')).read()
setup(
name='pas.plugins.ldap',
version=version,
description=shortdesc,
long_description=longdesc,
classifiers=[
'Environment :: Web Environment',
'Framework :: Zope2',
'Framework :: Plone',
'Framework :: Plone :: 5.0',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Operating System :: OS Independent',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
],
keywords='zope2 pas plone ldap authentication',
author='BlueDynamics Alliance',
author_email='[email protected]',
url='https://pypi.python.org/pypi/pas.plugins.ldap',
license='BSD like',
packages=find_packages('src'),
package_dir={'': 'src'},
namespace_packages=['pas', 'pas.plugins'],
include_package_data=True,
zip_safe=False,
install_requires=[
'AccessControl>=3.0',
'Acquisition',
'bda.cache',
'five.globalrequest',
'node',
'node.ext.ldap>=1.0b2',
'odict',
'plone.registry',
'Products.CMFCore',
'Products.GenericSetup',
'Products.PlonePAS',
'Products.PluggableAuthService',
'Products.statusmessages',
'python-ldap',
'setuptools',
'yafowil>=2.2b2',
'yafowil.plone>=1.3',
'yafowil.widget.array',
'yafowil.widget.dict',
'yafowil.yaml',
'zope.component',
'zope.globalrequest',
'zope.i18nmessageid',
'zope.interface',
'zope.traversing',
'Zope2',
],
extras_require={
'test': [
'interlude[ipython]>=1.3.1',
'plone.testing',
'zope.configuration',
],
'plone': [
'Plone',
]
},
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""",
)