forked from plone/plone.app.cmsui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (41 loc) · 1.35 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
from setuptools import setup, find_packages
import os
version = '1.0a2'
setup(name='plone.app.cmsui',
version=version,
description="CMS user interface for Plone",
long_description=open("README.txt").read() + "\n\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
# Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Framework :: Plone",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='plone ui',
author='Plone developers',
author_email='',
url='http://pypi.python.org/pypi/plone.app.cmsui',
license='GPL',
packages=find_packages('src'),
package_dir={'': 'src'},
namespace_packages=['plone', 'plone.app'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'plone.app.registry',
'Products.CMFPlone',
'plone.namedfile[blobs]',
'plone.formwidget.namedfile',
# XXX: Unclear why this isn't being pulled into a plain Plone 4.1 site
'zope.browserresource',
],
extras_require={
'test': ['plone.app.testing'],
},
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""",
)