source: products/quintagroup.seoptimizer/tags/2.0.1/setup.py @ 1552

Last change on this file since 1552 was 627, checked in by crchemist, 17 years ago

Added anonym user email validation.

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