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

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

Updated classifiers

  • Property svn:eol-style set to native
File size: 2.0 KB
RevLine 
[1653]1# -*- coding: utf-8 -*-
[1591]2from setuptools import setup, find_packages
3import os
4
[3663]5version = '1.8.2'
[1591]6
[3152]7tests_require = ['zope.testing',
8                 'collective.testcaselayer']
[3002]9
[1591]10setup(name='quintagroup.plonegooglesitemaps',
11      version=version,
[3510]12      description="Allows Plone websites to get better visibility for "
[3152]13                  "Google search engine",
[1591]14      long_description=open("README.txt").read() + "\n" +
[3510]15           open(os.path.join("docs", "HISTORY.txt")).read(),
[3152]16      # Get more strings from
17      # http://pypi.python.org/pypi?%3Aaction=list_classifiers
[1591]18      classifiers=[
[3596]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",
[3510]27          "Framework :: Plone",
[3596]28          "Framework :: Zope2",
29          "Framework :: Zope3",
30          "License :: OSI Approved :: GNU General Public License (GPL)",
31          "Operating System :: OS Independent",
[3510]32          "Programming Language :: Python",
33      ],
[1591]34      keywords='plone google sitemap quintagroup search engine',
35      author='Quintagroup',
36      author_email='info@quintagroup.com',
[3510]37      url='http://svn.quintagroup.com/products/'
[3152]38          'quintagroup.plonegooglesitemaps',
[1591]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',
[3002]46          'plone.browserlayer',
[2430]47          'quintagroup.canonicalpath>=0.7',
[2245]48          'quintagroup.catalogupdater',
[2427]49          'archetypes.schemaextender',
[1591]50          # -*- Extra requirements: -*-
51      ],
[3002]52      tests_require=tests_require,
53      extras_require=dict(tests=tests_require),
[1591]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.