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

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

clean up prefs_gsm_settings.cpt

  • Property svn:eol-style set to native
File size: 1.5 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
[627]8def read(*rnames):
9    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
10   
[377]11setup(name='quintagroup.seoptimizer',
[627]12      version=read("quintagroup", "seoptimizer", "version.txt").strip(),
[591]13      description="Quintagroup Search Engine Optimization Tool",
[627]14      long_description=read("docs", "README.txt") + "\n" + \
[728]15                       read("docs", "INSTALL.txt") + "\n" + \
[627]16                       read("docs", "HISTORY.txt"),
[377]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='',
[591]26      author='Myroslav Opyr, Volodymyr Romaniuk, Mykola Kharechko, Vitaliy Podoba, Volodymyr Cherepanyak, Taras Melnychuk, Vitaliy Stepanov',
27      author_email='support@quintagroup.com',
[627]28      url='http://quintagroup.com/services/plone-development/products/qSEOptimizer/',
[377]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          # -*- Extra requirements: -*-
37      ],
38      entry_points="""
39      # -*- Entry points: -*-
40      """,
41      )
Note: See TracBrowser for help on using the repository browser.