# -*- coding: utf-8 -*- """ This module contains the tool of aem.theme.pratifioriti """ import os from setuptools import setup, find_packages def read(*rnames): return open(os.path.join(os.path.dirname(__file__), *rnames)).read() version = '0.1' tests_require=['zope.testing'] setup(name='aem.theme.pratifioriti', version=version, description="An installable Quintagroup theme for Plone 3", 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=[ 'Framework :: Plone', 'Intended Audience :: Developers', 'Topic :: Software Development :: Libraries :: Python Modules', 'License :: OSI Approved :: GNU General Public License (GPL)', ], keywords='', author='', author_email='', url='http://svn.plone.org/svn/collective/', license='GPL', packages=find_packages(exclude=['ez_setup']), namespace_packages=['aem', 'aem.theme',], include_package_data=True, zip_safe=False, install_requires=['setuptools', 'aem.pcommerce.userdata', # -*- Extra requirements: -*- 'collective.quickupload', 'pcommerce.core', 'pcommerce.payment.invoice', 'pcommerce.shipment.haulage', 'pcommerce.shipment.parcel', 'pcommerce.shipment.pickup', 'pcommerce.stock', 'webcouturier.dropdownmenu', ], tests_require=tests_require, extras_require=dict(tests=tests_require), test_suite = 'aem.theme.pratifioriti.tests', entry_points=""" # -*- entry_points -*- """, #paster_plugins = ["ZopeSkel",], setup_requires = ["setuptools",], )