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

Last change on this file was 3542, checked in by ktarasz, 12 years ago

fixed pep8 and pyflakes

  • Property svn:eol-style set to native
File size: 1.7 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.2.0'
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
18      # 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, '
28             'Vitaliy Podoba, Volodymyr Cherepanyak, Taras Melnychuk, '
29             'Vitaliy Stepanov, Andriy Mylenkyy',
30      author_email='support@quintagroup.com',
31      url='http://quintagroup.com/services/'
32          'plone-development/products/qSEOptimizer/',
33      license='GPL',
34      packages=find_packages(exclude=['ez_setup']),
35      namespace_packages=['quintagroup'],
36      include_package_data=True,
37      zip_safe=False,
38      install_requires=[
39          'setuptools',
40          'plone.browserlayer',
41          'quintagroup.canonicalpath>=0.6',
42          'collective.monkeypatcher',
43          #'Plone >= 4.0a',
44          # -*- Extra requirements: -*-
45      ],
46      entry_points="""
47      # -*- Entry points: -*-
48      [z3c.autoinclude.plugin]
49      target = plone
50      """,
51      )
Note: See TracBrowser for help on using the repository browser.