source: products/quintagroup.seoptimizer/branches/plone4/setup.py @ 2958

Last change on this file since 2958 was 2958, checked in by mylan, 14 years ago

Merged 3.0.5 to 3.0.7 changes from trunk into plone-4 branch version.

Merged revisions 3942-3945,3966-3976,3982-3983,3994 via svnmerge from
http://svn.quintagroup.com/products/quintagroup.seoptimizer/trunk

........

r3942 | mylan | 2010-10-20 17:06:46 +0300 (Wed, 20 Oct 2010) | 1 line


#233: Bump version to 3.0.7, updated history

........

r3943 | olha | 2010-10-20 17:14:52 +0300 (Wed, 20 Oct 2010) | 1 line


HISTORY.txt checked

........

r3944 | olha | 2010-10-20 17:20:15 +0300 (Wed, 20 Oct 2010) | 1 line


internal README file updated

........

r3945 | mylan | 2010-10-20 18:16:14 +0300 (Wed, 20 Oct 2010) | 1 line


#233: Updated list of supported version in README.txt to 3.1+

........

r3966 | mylan | 2010-10-26 17:33:27 +0300 (Tue, 26 Oct 2010) | 1 line


#233: Reduce catch exceptions to URLError and HTTPError, log error to error_log, return link to error_log

........

r3967 | mylan | 2010-10-26 17:34:03 +0300 (Tue, 26 Oct 2010) | 1 line


#233: Update tests for catching errors on keywords calculation

........

r3968 | mylan | 2010-10-26 17:55:15 +0300 (Tue, 26 Oct 2010) | 1 line


#233: Make code more readable

........

r3969 | mylan | 2010-10-26 18:08:15 +0300 (Tue, 26 Oct 2010) | 1 line


#233: Force to get portal_transforms as utility

........

r3970 | mylan | 2010-10-26 18:14:46 +0300 (Tue, 26 Oct 2010) | 1 line


#233: little cleanup

........

r3971 | mylan | 2010-10-26 20:35:28 +0300 (Tue, 26 Oct 2010) | 1 line


#233: Force logging keywords calculation to nearest to context error_log object. Other minor fixes

........

r3972 | mylan | 2010-10-26 21:08:06 +0300 (Tue, 26 Oct 2010) | 1 line


#233: Return getting error_log with getToolByName as more flexible and accurate

........

r3973 | mylan | 2010-10-27 18:09:31 +0300 (Wed, 27 Oct 2010) | 1 line


#233: Correct HISTORY information

........

r3974 | mylan | 2010-10-27 18:16:40 +0300 (Wed, 27 Oct 2010) | 1 line


#233: Added plone.browserlayer to requirements for Plone-3.0 support

........

r3975 | mylan | 2010-10-27 18:18:13 +0300 (Wed, 27 Oct 2010) | 1 line


#233: Fixed testcases to emulate proper test environment for plone-3.0

........

r3976 | mylan | 2010-10-27 18:21:55 +0300 (Wed, 27 Oct 2010) | 1 line


#233: Described steps for use the package with plone-3.0.

........

r3982 | olha | 2010-10-29 13:16:55 +0300 (Fri, 29 Oct 2010) | 1 line


doc files corrected a bit

........

r3983 | olha | 2010-10-29 13:20:45 +0300 (Fri, 29 Oct 2010) | 1 line


wrong line spacing corrected

........

r3994 | mylan | 2010-11-01 16:59:34 +0200 (Mon, 01 Nov 2010) | 1 line


Removed devloper settings of the package configuration

........

  • Property svn:eol-style set to native
File size: 1.6 KB
Line 
1# -*- coding: utf-8 -*-
2"""
3This module contains the tool of quintagroup.seoptimizer
4"""
5import os
6from setuptools import setup, find_packages
7
8
9version = '4.0.3'
10
11setup(name='quintagroup.seoptimizer',
12      version=version,
13      description="Quintagroup Search Engine Optimization Tool",
14      long_description=open("README.txt").read() + "\n" +
15                       open(os.path.join("docs", "INSTALL.txt")).read() + "\n" +
16                       open(os.path.join("docs", "HISTORY.txt")).read(),
17
18      # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
19      classifiers=[
20        "Framework :: Plone",
21        "Framework :: Zope2",
22        "Framework :: Zope3",
23        "Programming Language :: Python",
24        "Topic :: Software Development :: Libraries :: Python Modules",
25        ],
26      keywords='',
27      author='Myroslav Opyr, Volodymyr Romaniuk, Mykola Kharechko, Vitaliy Podoba, Volodymyr Cherepanyak, Taras Melnychuk, Vitaliy Stepanov, Andriy Mylenkyy',
28      author_email='support@quintagroup.com',
29      url='http://quintagroup.com/services/plone-development/products/qSEOptimizer/',
30      license='GPL',
31      packages=find_packages(exclude=['ez_setup']),
32      namespace_packages=['quintagroup'],
33      include_package_data=True,
34      zip_safe=False,
35      install_requires=[
36          'setuptools',
37          'plone.browserlayer',
38          'quintagroup.canonicalpath>=0.6',
39          'collective.monkeypatcher',
40          'Plone >= 4.0a',
41          # -*- Extra requirements: -*-
42      ],
43      entry_points="""
44      # -*- Entry points: -*-
45      [z3c.autoinclude.plugin]
46      target = plone
47      """,
48      )
Note: See TracBrowser for help on using the repository browser.