-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (52 loc) · 1.54 KB
/
setup.py
File metadata and controls
54 lines (52 loc) · 1.54 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import os.path
from setuptools import setup, find_packages
version = '0.1'
setup(
name = 'collective.portletclass',
version = version,
description = 'Add custom CSS classes to Plone portlet wrappers for flexible theming.',
long_description = open("README.txt").read() + "\n\n" +
open("CHANGES.txt").read(),
classifiers = [
"Environment :: Web Environment",
"Framework :: Plone",
"Framework :: Zope2",
'Intended Audience :: Developers',
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
keywords = 'plone',
author = 'Laurence Rowe',
author_email = 'lrowe@shuttlethread.com',
url='https://github.com/shuttlethread/collective.portletclass',
license = 'GPL version 2',
packages = find_packages('src'),
package_dir = {'': 'src'},
namespace_packages = ['collective'],
include_package_data = True,
platforms = 'Any',
zip_safe = False,
install_requires = [
'collective.monkeypatcher',
'plone.app.portlets',
'plone.browserlayer',
'setuptools',
'z3c.jbot',
'zope.component',
'zope.event',
'zope.formlib',
'zope.i18nmessageid',
'zope.interface',
'zope.lifecycleevent',
'zope.schema',
],
extras_require = {
'test': [
],
},
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""",
)