source: products/quintagroup.plonegooglesitemaps/trunk/setup.py @ 3565

Last change on this file since 3565 was 3516, checked in by potar, 12 years ago

reverting erroneous commit [4551] (svn merge -r 4551:4549 http://svn.quintagroup.com/products/quintagroup.plonegooglesitemaps/trunk

  • Property svn:eol-style set to native
File size: 1.5 KB
Line 
1# -*- coding: utf-8 -*-
2from setuptools import setup, find_packages
3import os
4
5version = '1.8.0'
6
7tests_require = ['zope.testing',
8                 'collective.testcaselayer']
9
10setup(name='quintagroup.plonegooglesitemaps',
11      version=version,
12      description="Allows Plone websites to get better visibility for "
13                  "Google search engine",
14      long_description=open("README.txt").read() + "\n" +
15           open(os.path.join("docs", "HISTORY.txt")).read(),
16      # Get more strings from
17      # http://pypi.python.org/pypi?%3Aaction=list_classifiers
18      classifiers=[
19          "Framework :: Plone",
20          "Programming Language :: Python",
21      ],
22      keywords='plone google sitemap quintagroup search engine',
23      author='Quintagroup',
24      author_email='info@quintagroup.com',
25      url='http://svn.quintagroup.com/products/'
26          'quintagroup.plonegooglesitemaps',
27      license='GPL',
28      packages=find_packages(exclude=['ez_setup']),
29      namespace_packages=['quintagroup'],
30      include_package_data=True,
31      zip_safe=False,
32      install_requires=[
33          'setuptools',
34          'plone.browserlayer',
35          'quintagroup.canonicalpath>=0.7',
36          'quintagroup.catalogupdater',
37          'archetypes.schemaextender',
38          # -*- Extra requirements: -*-
39      ],
40      tests_require=tests_require,
41      extras_require=dict(tests=tests_require),
42      entry_points="""
43      # -*- Entry points: -*-
44
45      [z3c.autoinclude.plugin]
46      target = plone
47      """,
48      )
Note: See TracBrowser for help on using the repository browser.