source: products/quintagroup.portlet.collection/trunk/setup.py @ 3559

Last change on this file since 3559 was 3559, checked in by potar, 12 years ago

added compability with plone3.0

File size: 1.0 KB
RevLine 
[1572]1from setuptools import setup, find_packages
2import os
3
[3558]4version = '1.1.1'
[1572]5
6setup(name='quintagroup.portlet.collection',
7      version=version,
8      description="Extended collection portlet",
9      long_description=open("README.txt").read() + "\n" +
[3556]10      open(os.path.join("docs", "HISTORY.txt")).read(),
[1572]11      # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
12      classifiers=[
[3556]13          "Programming Language :: Python",
14          "Topic :: Software Development :: Libraries :: Python Modules",
15      ],
[1572]16      keywords='portlet collection quintagroup',
17      author='Melnychuk Taras',
18      author_email='fenix@quintagroup.com',
19      url='',
20      license='GPL',
21      packages=find_packages(exclude=['ez_setup']),
22      namespace_packages=['quintagroup', 'quintagroup.portlet'],
23      include_package_data=True,
24      zip_safe=False,
25      install_requires=[
26          'setuptools',
[3559]27          'plone.portlet.collection'
[1572]28          # -*- Extra requirements: -*-
29      ],
30      entry_points="""
31      # -*- Entry points: -*-
32      """,
33      )
Note: See TracBrowser for help on using the repository browser.