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

Last change on this file since 3245 was 3245, checked in by chervol, 13 years ago

prepare new release

  • 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.6'
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          # -*- Extra requirements: -*-
34      ],
35      entry_points="""
36      # -*- Entry points: -*-
37      """,
38      )
Note: See TracBrowser for help on using the repository browser.