forked from miohtama/niteoweb.loginas
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (34 loc) · 1.05 KB
/
Copy pathsetup.py
File metadata and controls
37 lines (34 loc) · 1.05 KB
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
import os.path
from setuptools import setup, find_packages
DESC = """
Install through quickinstaller and head to http://ip/ploneinstance/@@login-as.
Report bugs to info [at] niteoweb.com.
"""
setup(name='niteoweb.loginas',
version='0.3dev',
description="Allow administrator to login as another user (useful for debugging).",
long_description=DESC,
classifiers=[
"Framework :: Plone",
"Framework :: Zope2",
"Framework :: Zope3",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='zope, plone',
author='Niteoweb d.o.o.',
author_email='info@niteoweb.com',
url='http://www.niteoweb.com/',
license='GNU GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['niteoweb'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
],
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""",
)