-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
33 lines (31 loc) · 1.19 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
from setuptools import setup, find_packages
version = '2.0.0a2.dev0'
setup(name='Products.PloneLDAP',
version=version,
description="LDAP/Active Directory support for Plone",
long_description=(open('README.txt').read() +
open('CHANGES.rst').read()),
classifiers=[
"Framework :: Plone",
"Framework :: Zope2",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP",
"License :: OSI Approved :: Zope Public License",
],
keywords='Zope CMF Plone LDAP authentication',
author='Wichert Akkerman - Simpon',
author_email='[email protected]',
url='https://github.com/collective/Products.PloneLDAP',
license='Zope Public License 2.1',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['Products'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'Products.PlonePAS',
'Products.LDAPMultiPlugins',
'Products.LDAPUserFolder',
],
)