-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·46 lines (43 loc) · 1.39 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os
version = '0.3.dev0'
README = open("README.rst").read()
HISTORY = open(os.path.join("docs", "HISTORY.rst")).read()
setup(name='base5.portlets',
version=version,
description="This product enables you to put portlets in places other than right and left columns",
long_description=README + "\n" + HISTORY,
classifiers=[
"Environment :: Web Environment",
"Framework :: Plone",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='plone5, portlets',
author='UPCnet Plone Team',
author_email='[email protected]',
url='https://github.com/UPCnet/base5.portlets',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['base5'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'Products.CMFPlone>=4.0b1'
],
extras_require=dict(
test=[
'Products.PloneTestCase',
]
),
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
)