source: products/quintagroup.plonetabs/branches/tests/setup.py @ 3401

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

Fixed compatibility with plone3

  • Property svn:eol-style set to native
File size: 1.2 KB
Line 
1
2
3import os
4from setuptools import setup, find_packages
5
6version = '0.7'
7
8setup(name='quintagroup.plonetabs',
9      version=version,
10      description="Quintagroup Plone Tabs",
11      long_description=open("README.txt").read() + "\n" +
12                       open(os.path.join("docs", "HISTORY.txt")).read(),
13
14      # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
15      classifiers=[
16        "Framework :: Plone",
17        "Framework :: Zope2",
18        "Framework :: Zope3",
19        "Programming Language :: Python",
20        "Topic :: Software Development :: Libraries :: Python Modules",
21        ],
22      keywords='quintagroup plonetabs',
23      author='"Quintagroup": http://quintagroup.com/',
24      author_email='support@quintagroup.com',
25      url='http://quintagroup.com/services/plone-development/products/plone-tabs',
26      license='GPL',
27      packages=find_packages(exclude=['ez_setup']),
28      namespace_packages=['quintagroup'],
29      include_package_data=True,
30      zip_safe=False,
31      install_requires=[
32          'setuptools',
33          'plone.browserlayer',
34          # -*- Extra requirements: -*-
35      ],
36      entry_points="""
37      # -*- Entry points: -*-
38      """,
39      )
Note: See TracBrowser for help on using the repository browser.