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

Last change on this file since 3650 was 3650, checked in by potar, 11 years ago

back to development: 1.8.1

  • Property svn:eol-style set to native
File size: 2.1 KB
RevLine 
[1653]1# -*- coding: utf-8 -*-
[1591]2from setuptools import setup, find_packages
3import os
4
[3650]5version = '1.8.1-dev'
[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.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",
[3510]29          "Framework :: Plone",
[3596]30          "Framework :: Zope2",
31          "Framework :: Zope3",
32          "License :: OSI Approved :: GNU General Public License (GPL)",
33          "Operating System :: OS Independent",
[3510]34          "Programming Language :: Python",
35      ],
[1591]36      keywords='plone google sitemap quintagroup search engine',
37      author='Quintagroup',
38      author_email='info@quintagroup.com',
[3510]39      url='http://svn.quintagroup.com/products/'
[3152]40          'quintagroup.plonegooglesitemaps',
[1591]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',
[3002]48          'plone.browserlayer',
[2430]49          'quintagroup.canonicalpath>=0.7',
[2245]50          'quintagroup.catalogupdater',
[2427]51          'archetypes.schemaextender',
[1591]52          # -*- Extra requirements: -*-
53      ],
[3002]54      tests_require=tests_require,
55      extras_require=dict(tests=tests_require),
[1591]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.