forked from collective/collective.portlet.feedmixer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 1.01 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
from setuptools import setup, find_packages
version = '1.7htug2'
setup(name='collective.portlet.feedmixer',
version=version,
description="Portlet which can show multiple feeds",
long_description=(open("README.txt").read() +
open("docs/HISTORY.txt").read()),
classifiers=[
"Framework :: Plone",
"Framework :: Zope2",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='plone rss atom feed portlet',
author='Wichert Akkerman - Jarn',
author_email='[email protected]',
url='http://plone.org',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['collective', 'collective.portlet'],
include_package_data=True,
zip_safe=False,
install_requires=[
"setuptools",
"feedparser",
"plone.portlets",
"plone.app.portlets",
"plone.memoize",
],
)