forked from plone/plone.outputfilters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (42 loc) · 1.45 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
from setuptools import setup, find_packages
import os
version = '1.3.dev0'
setup(name='plone.outputfilters',
version=version,
description="Transformations applied to HTML in Plone text fields as they are rendered",
long_description=open("README.rst").read() + "\n" +
open(os.path.join("plone", "outputfilters",
"README.txt")).read() + "\n" +
open("CHANGES.txt").read(),
# Get more strings from
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Framework :: Plone",
"Programming Language :: Python",
],
keywords='plone transform filter uid caption',
author='David Glick, Plone Foundation',
author_email='[email protected]',
url='http://github.com/plone/plone.outputfilters',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['plone'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'Products.CMFCore',
'Products.GenericSetup',
'Products.MimetypesRegistry',
'Products.PortalTransforms',
# -*- Extra requirements: -*-
],
extras_require={
'test': ['Products.PloneTestCase'],
},
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
)