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

Last change on this file since 876 was 876, checked in by mylan, 17 years ago

Fix notification bug on deleting single comment.

  • Property svn:eol-style set to native
File size: 1.1 KB
Line 
1from setuptools import setup, find_packages
2
3version = '0.5b1'
4
5setup(name='quintagroup.plonetabs',
6      version=version,
7      description="Quintagroup Plone Tabs",
8      long_description=open("README.txt").read() + "\n" +
9                       open(os.path.join("docs", "HISTORY.txt")).read(),
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.