source: products/quintagroup.portlet.static/trunk/setup.py @ 3665

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

Prepare quintagroup.portlet.static 0.7.

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