| 1 | from setuptools import setup, find_packages |
|---|
| 2 | import os |
|---|
| 3 | |
|---|
| 4 | version = '0.6' |
|---|
| 5 | |
|---|
| 6 | tests_require=['zope.testing'] |
|---|
| 7 | setup(name='quintagroup.canonicalpath', |
|---|
| 8 | version=version, |
|---|
| 9 | description="Brings canonical path calculation functionality", |
|---|
| 10 | long_description=open("README.txt").read() + "\n" + |
|---|
| 11 | open(os.path.join("docs", "HISTORY.txt")).read(), |
|---|
| 12 | # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers |
|---|
| 13 | classifiers=[ |
|---|
| 14 | "Programming Language :: Python", |
|---|
| 15 | "Topic :: Software Development :: Libraries :: Python Modules", |
|---|
| 16 | ], |
|---|
| 17 | keywords='canonical path plone quintagroup', |
|---|
| 18 | author='Quintagroup', |
|---|
| 19 | author_email='support@quintagroup.com', |
|---|
| 20 | url='http://svn.quintagroup.com/products/quintagroup.canonicalpath', |
|---|
| 21 | license='GPL', |
|---|
| 22 | packages=find_packages(exclude=['ez_setup']), |
|---|
| 23 | namespace_packages=['quintagroup'], |
|---|
| 24 | include_package_data=True, |
|---|
| 25 | zip_safe=False, |
|---|
| 26 | install_requires=[ |
|---|
| 27 | 'setuptools', |
|---|
| 28 | ], |
|---|
| 29 | tests_require=tests_require, |
|---|
| 30 | extras_require=dict(tests=tests_require), |
|---|
| 31 | test_suite = 'quintagroup.canonicalpath.tests.test_suite', |
|---|
| 32 | entry_points=""" |
|---|
| 33 | # -*- Entry points: -*- |
|---|
| 34 | [z3c.autoinclude.plugin] |
|---|
| 35 | target = plone |
|---|
| 36 | """, |
|---|
| 37 | ) |
|---|
| 38 | |
|---|