from setuptools import setup, find_packages import os version = '0.5dev' tests_require=['zope.testing'] setup(name='quintagroup.canonicalpath', version=version, description="Bring canonical path calculation functionality", 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=[ "Programming Language :: Python", "Topic :: Software Development :: Libraries :: Python Modules", ], keywords='canonical path plone quintagroup', author='Quintagroup', author_email='support@quintagroup.com', url='http://svn.quintagroup.com/products/quintagroup.canonicalpath', license='GPL', packages=find_packages(exclude=['ez_setup']), namespace_packages=['quintagroup'], include_package_data=True, zip_safe=False, install_requires=[ 'setuptools', ], tests_require=tests_require, extras_require=dict(tests=tests_require), test_suite = 'quintagroup.canonicalpath.tests.test_suite', entry_points=""" # -*- Entry points: -*- [z3c.autoinclude.plugin] target = plone """, )