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

Last change on this file since 3659 was 3659, checked in by naomin, 11 years ago

Prepare quintagroup.plonegooglesitemaps 1.8.1.

  • Property svn:eol-style set to native
File size: 2.1 KB
Line 
1# -*- coding: utf-8 -*-
2from setuptools import setup, find_packages
3import os
4
5version = '1.8.1'
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          "Development Status :: 5 - Production/Stable",
20          "Environment :: Web Environment",
21          "Framework :: Plone :: 3.0",
22          "Framework :: Plone :: 3.1",
23          "Framework :: Plone :: 3.2",
24          "Framework :: Plone :: 3.3",
25          "Framework :: Plone :: 4.0",
26          "Framework :: Plone :: 4.1",
27          "Framework :: Plone :: 4.2",
28          "Framework :: Plone :: 4.3",
29          "Framework :: Plone",
30          "Framework :: Zope2",
31          "Framework :: Zope3",
32          "License :: OSI Approved :: GNU General Public License (GPL)",
33          "Operating System :: OS Independent",
34          "Programming Language :: Python",
35      ],
36      keywords='plone google sitemap quintagroup search engine',
37      author='Quintagroup',
38      author_email='info@quintagroup.com',
39      url='http://svn.quintagroup.com/products/'
40          'quintagroup.plonegooglesitemaps',
41      license='GPL',
42      packages=find_packages(exclude=['ez_setup']),
43      namespace_packages=['quintagroup'],
44      include_package_data=True,
45      zip_safe=False,
46      install_requires=[
47          'setuptools',
48          'plone.browserlayer',
49          'quintagroup.canonicalpath>=0.7',
50          'quintagroup.catalogupdater',
51          'archetypes.schemaextender',
52          # -*- Extra requirements: -*-
53      ],
54      tests_require=tests_require,
55      extras_require=dict(tests=tests_require),
56      entry_points="""
57      # -*- Entry points: -*-
58
59      [z3c.autoinclude.plugin]
60      target = plone
61      """,
62      )
Note: See TracBrowser for help on using the repository browser.