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

Last change on this file since 1552 was 593, checked in by piv, 18 years ago

fixed syntax error

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