from setuptools import setup, find_packages import os version = '0.7' setup(name='quintagroup.portlet.static', version=version, description="Static portlet with one extra styling field", long_description=open(os.path.join("quintagroup", "portlet", "static", "README.txt")).read() + "\n\n" + open(os.path.join("docs", "INSTALL.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 static portlet', author='Quintagroup', author_email='support@quintagroup.com', url='http://svn.quintagroup.com/products/quintagroup.portlet.static', license='GPL', packages=find_packages(exclude=['ez_setup']), namespace_packages=['quintagroup', 'quintagroup.portlet'], include_package_data=True, zip_safe=False, install_requires=[ 'setuptools', # -*- Extra requirements: -*- ], entry_points=""" # -*- Entry points: -*- [z3c.autoinclude.plugin] target = plone """, )