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
RevLine 
[627]1# -*- coding: utf-8 -*-
2"""
3This module contains the tool of quintagroup.seoptimizer
4"""
5import os
[377]6from setuptools import setup, find_packages
7
[3471]8version = '4.2.0'
[1162]9
[377]10setup(name='quintagroup.seoptimizer',
[1162]11      version=version,
[591]12      description="Quintagroup Search Engine Optimization Tool",
[1162]13      long_description=open("README.txt").read() + "\n" +
[3542]14      open(os.path.join("docs", "INSTALL.txt")).read() + "\n" +
15      open(os.path.join("docs", "HISTORY.txt")).read(),
[1162]16
[3134]17      # Get more strings from
18      # http://www.python.org/pypi?%3Aaction=list_classifiers
[377]19      classifiers=[
[3542]20          "Framework :: Plone",
21          "Framework :: Zope2",
22          "Framework :: Zope3",
23          "Programming Language :: Python",
24          "Topic :: Software Development :: Libraries :: Python Modules",
25      ],
[377]26      keywords='',
[3542]27      author='Myroslav Opyr, Volodymyr Romaniuk, Mykola Kharechko, '
28             'Vitaliy Podoba, Volodymyr Cherepanyak, Taras Melnychuk, '
[3134]29             'Vitaliy Stepanov, Andriy Mylenkyy',
[591]30      author_email='support@quintagroup.com',
[3542]31      url='http://quintagroup.com/services/'
[3134]32          'plone-development/products/qSEOptimizer/',
[377]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',
[2935]40          'plone.browserlayer',
[2166]41          'quintagroup.canonicalpath>=0.6',
[2139]42          'collective.monkeypatcher',
[2970]43          #'Plone >= 4.0a',
[377]44          # -*- Extra requirements: -*-
45      ],
46      entry_points="""
47      # -*- Entry points: -*-
[1715]48      [z3c.autoinclude.plugin]
49      target = plone
[377]50      """,
51      )
Note: See TracBrowser for help on using the repository browser.