| 1 | # -*- coding: utf-8 -*- |
|---|
| 2 | from setuptools import setup, find_packages |
|---|
| 3 | import os |
|---|
| 4 | |
|---|
| 5 | version = '1.5.2' |
|---|
| 6 | |
|---|
| 7 | setup(name='quintagroup.plonegooglesitemaps', |
|---|
| 8 | version=version, |
|---|
| 9 | description="Allows Plone websites to get better visibility for Google search engine", |
|---|
| 10 | long_description=open("README.txt").read() + "\n" + |
|---|
| 11 | open(os.path.join("docs", "HISTORY.txt")).read(), |
|---|
| 12 | # Get more strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers |
|---|
| 13 | classifiers=[ |
|---|
| 14 | "Framework :: Plone", |
|---|
| 15 | "Programming Language :: Python", |
|---|
| 16 | ], |
|---|
| 17 | keywords='plone google sitemap quintagroup search engine', |
|---|
| 18 | author='Quintagroup', |
|---|
| 19 | author_email='info@quintagroup.com', |
|---|
| 20 | url='http://svn.quintagroup.com/products/quintagroup.plonegooglesitemaps', |
|---|
| 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 | 'quintagroup.canonicalpath>=0.7', |
|---|
| 29 | 'quintagroup.catalogupdater', |
|---|
| 30 | 'archetypes.schemaextender', |
|---|
| 31 | # -*- Extra requirements: -*- |
|---|
| 32 | ], |
|---|
| 33 | entry_points=""" |
|---|
| 34 | # -*- Entry points: -*- |
|---|
| 35 | |
|---|
| 36 | [z3c.autoinclude.plugin] |
|---|
| 37 | target = plone |
|---|
| 38 | """, |
|---|
| 39 | setup_requires=["PasteScript"], |
|---|
| 40 | paster_plugins = ["ZopeSkel"], |
|---|
| 41 | ) |
|---|