-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
60 lines (57 loc) · 1.74 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
##############################################################################
#
# Copyright (c) 2014 Netsight Internet Solutions
# All Rights Reserved.
#
##############################################################################
from setuptools import setup, find_packages
setup(name='experimental.securityindexing',
version='0.6',
url='https://github.com/ploneintranet/experimental.securityindexing',
license='GPLv2',
description="""\
Optimises indexing of object security for a Plone site.
""",
author='Netsight Internet Solutions',
author_email='[email protected]',
long_description=(
open('README.rst').read() + '\n' +
open('CHANGES.rst').read()
),
classifiers=[
'Programming Language :: Python :: 2.7',
'Framework :: Plone :: 4.0',
'Framework :: Plone :: 4.1',
'Framework :: Plone :: 4.2',
'Framework :: Plone :: 4.3',
],
packages=find_packages('src'),
namespace_packages=['experimental'],
package_dir={'': 'src'},
install_requires=[
'setuptools',
'plone.api',
'zope.annotation',
'zope.component',
'zope.interface',
'Products.Archetypes',
'Products.CMFCore'
],
extras_require={
'benchmark': [
'plone.app.contenttypes[test]',
'plone.app.testing'
],
'test': [
'mock',
'plone.app.contenttypes[test]',
'plone.app.dexterity[grok]',
'plone.app.testing',
]
},
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""",
include_package_data=True,
zip_safe=False)