forked from plone/Products.PlonePAS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (40 loc) · 1.22 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
from setuptools import setup, find_packages
version = '4.0.13.dev0'
setup(name='Products.PlonePAS',
version=version,
description="PlonePAS adapts the PluggableAuthService for use by Plone.",
long_description=open("README.txt").read() + "\n" + \
open("CHANGES.txt").read(),
classifiers=[
"Framework :: Plone",
"Framework :: Zope2",
],
keywords='Zope CMF Plone PAS authentication',
author='Kapil Thangavelu, Wichert Akkerman',
author_email='[email protected]',
url='http://pypi.python.org/pypi/Products.PlonePAS',
license='ZPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['Products'],
include_package_data=True,
zip_safe=False,
extras_require=dict(
test=[
'Products.PloneTestCase',
'Products.Archetypes',
],
atstorage=[
'Products.Archetypes',
]
),
install_requires=[
'setuptools',
'plone.memoize',
'plone.session',
'plone.i18n',
'Products.CMFCore',
'Products.GenericSetup',
'Products.PluggableAuthService',
'Zope2 > 2.12.4',
],
)