from setuptools import setup, find_packages import os version = '1.1.1' setup(name='quintagroup.portlet.collection', version=version, description="Extended collection portlet", long_description=open("README.txt").read() + "\n" + open(os.path.join("docs", "HISTORY.txt")).read(), # Get more strings from # http://www.python.org/pypi?%3Aaction=list_classifiers classifiers=[ "Environment :: Web Environment", "Framework :: Zope2", "Framework :: Plone", "Framework :: Plone :: 3.2", "Framework :: Plone :: 3.3", "Framework :: Plone :: 4.1", "Framework :: Plone :: 4.2", "Framework :: Plone :: 4.3", "Programming Language :: Python", "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Natural Language :: English", "Operating System :: OS Independent", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Software Development :: Libraries :: Python Modules", "License :: OSI Approved :: GNU General Public License (GPL)", ], keywords='plone portlet collection quintagroup', author='Melnychuk Taras', author_email='fenix@quintagroup.com', url='', license='GPL', packages=find_packages(exclude=['ez_setup']), namespace_packages=['quintagroup', 'quintagroup.portlet'], include_package_data=True, zip_safe=False, install_requires=[ 'setuptools', 'plone.portlet.collection' # -*- Extra requirements: -*- ], entry_points=""" # -*- Entry points: -*- """, )