forked from plone/Products.PlonePAS
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
48 lines (45 loc) · 1.27 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
# -*- coding: utf-8 -*-
from setuptools import setup
from setuptools import find_packages
version = '5.0.4.dev0'
longdescription = open("README.rst").read()
longdescription += '\n'
longdescription += open("CHANGES.rst").read()
setup(
name='Products.PlonePAS',
version=version,
description="PlonePAS modifies the PluggableAuthService for use by Plone.",
long_description=longdescription,
classifiers=[
"Framework :: Plone",
"Framework :: Zope2",
],
keywords='Zope CMF Plone PAS authentication',
author='Kapil Thangavelu, Wichert Akkerman',
author_email='plone-developers@lists.sourceforge.net',
url='http://pypi.python.org/pypi/Products.PlonePAS',
license='ZPL',
packages=find_packages('src'),
package_dir={'': 'src'},
namespace_packages=['Products'],
include_package_data=True,
zip_safe=False,
install_requires=[
'Products.CMFCore',
'Products.GenericSetup',
'Products.PluggableAuthService',
'Zope2 >=2.13.22',
'plone.i18n',
'plone.memoize',
'plone.session',
'setuptools',
'zope.deprecation',
'plone.protect'
],
extras_require=dict(
test=[
'plone.app.testing',
'plone.testing',
],
),
)