from setuptools import setup, find_packages import os version = '0.1' setup(name='aem.pcommerce.userdata', version=version, description="Extend the user data fields that can be selected for the registration form.", long_description=open("README.txt").read() + "\n" + open(os.path.join("docs", "HISTORY.txt")).read() + "\n" + open(os.path.join("docs", "TODO.txt")).read(), # Get more strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers classifiers=[ "Framework :: Plone", "Programming Language :: Python", ], keywords='', author='Kees Hink', author_email='hink@gw20e.com', # url='http://svn.plone.org/svn/collective/collective.examples.userdata', license='GPL', packages=find_packages(exclude=['ez_setup']), namespace_packages=['aem', 'aem.pcommerce'], include_package_data=True, zip_safe=False, install_requires=[ 'setuptools', 'plone.app.users >= 1.0b7', # -*- Extra requirements: -*- ], entry_points=""" # -*- Entry points: -*- [z3c.autoinclude.plugin] target = plone """, )