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

Last change on this file since 617 was 613, checked in by crchemist, 18 years ago

Copied from branches/plone-2.5.

  • Property svn:eol-style set to native
File size: 1.3 KB
Line 
1from setuptools import setup, find_packages
2
3setup(name='quintagroup.seoptimizer',
4      version=open('./quintagroup/seoptimizer/version.txt').read(),
5      description="Quintagroup Search Engine Optimization Tool",
6      long_description=open("./docs/README.txt").read() + "\n" + \
7                       open("./docs/HISTORY.txt").read(),
8      # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
9      classifiers=[
10        "Framework :: Plone",
11        "Framework :: Zope2",
12        "Framework :: Zope3",
13        "Programming Language :: Python",
14        "Topic :: Software Development :: Libraries :: Python Modules",
15        ],
16      keywords='',
17      author='Myroslav Opyr, Volodymyr Romaniuk, Mykola Kharechko, Vitaliy Podoba, Volodymyr Cherepanyak, Taras Melnychuk, Vitaliy Stepanov',
18      author_email='support@quintagroup.com',
19      url='http://svn.quintagroup.com/products/quintagroup.seoptimizer/trunk/',
20      license='GPL',
21      packages=find_packages(exclude=['ez_setup']),
22      namespace_packages=['quintagroup'],
23      include_package_data=True,
24      zip_safe=False,
25      install_requires=[
26          'setuptools',
27          # -*- Extra requirements: -*-
28      ],
29      entry_points="""
30      # -*- Entry points: -*-
31      """,
32      )
Note: See TracBrowser for help on using the repository browser.