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

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

Updated classifiers

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