source: products/quintagroup.plonetabs/trunk/setup.py @ 873

Last change on this file since 873 was 545, checked in by piv, 18 years ago

realise 0.2.0

  • Property svn:eol-style set to native
File size: 1.1 KB
Line 
1from setuptools import setup, find_packages
2
3version = '0.5a'
4
5setup(name='quintagroup.plonetabs',
6      version=version,
7      description="Quintagroup Plone Tabs",
8      long_description="""\
9The product allows Plone websites to manage portal_actions tool from portal_control_panel configlet.""",
10      # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
11      classifiers=[
12        "Framework :: Plone",
13        "Framework :: Zope2",
14        "Framework :: Zope3",
15        "Programming Language :: Python",
16        "Topic :: Software Development :: Libraries :: Python Modules",
17        ],
18      keywords='quintagroup plonetabs',
19      author='(c) "Quintagroup": http://quintagroup.com/ , 2008',
20      author_email='info@quintagroup.com',
21      url='http://projects.quintagroup.com/products/wiki/qPloneTabs',
22      license='GPL',
23      packages=find_packages(exclude=['ez_setup']),
24      namespace_packages=['quintagroup'],
25      include_package_data=True,
26      zip_safe=False,
27      install_requires=[
28          'setuptools',
29          # -*- Extra requirements: -*-
30      ],
31      entry_points="""
32      # -*- Entry points: -*-
33      """,
34      )
Note: See TracBrowser for help on using the repository browser.