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

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

Changed product version

  • 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.1-dev'
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
15      # http://www.python.org/pypi?%3Aaction=list_classifiers
16      classifiers=[
17        "Framework :: Plone",
18        "Framework :: Zope2",
19        "Framework :: Zope3",
20        "Programming Language :: Python",
21        "Topic :: Software Development :: Libraries :: Python Modules",
22        ],
23      keywords='quintagroup plonetabs',
24      author='"Quintagroup": http://quintagroup.com/',
25      author_email='support@quintagroup.com',
26      url='http://quintagroup.com/' +\
27          'services/plone-development/products/plone-tabs',
28      license='GPL',
29      packages=find_packages(exclude=['ez_setup']),
30      namespace_packages=['quintagroup'],
31      include_package_data=True,
32      zip_safe=False,
33      install_requires=[
34          'setuptools',
35          'plone.browserlayer'
36          # -*- Extra requirements: -*-
37      ],
38      entry_points="""
39      # -*- Entry points: -*-
40      """,
41      )
Note: See TracBrowser for help on using the repository browser.