source: products/quintagroup.seoptimizer/tags/4.0.4/setup.py

Last change on this file was 3013, checked in by mylan, 13 years ago

#235: Updated history, bump version to 4.0.4

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