source: products/quintagroup.dropdownmenu/branches/cache/setup.py @ 3291

Last change on this file since 3291 was 3291, checked in by fenix, 13 years ago

added cache header for csshover.htc view to allow proxy and browser to cache it

  • Property svn:eol-style set to native
File size: 1.3 KB
RevLine 
[1154]1from setuptools import setup, find_packages
2import os
3
[3291]4version = '1.2.0.1'
[1154]5
[2871]6tests_require=['zope.testing',
7               'collective.testcaselayer']
8
[1154]9setup(name='quintagroup.dropdownmenu',
10      version=version,
[1157]11      description="Multilevel portal dropdown menu for Plone sites.",
[1154]12      long_description=open("README.txt").read() + "\n" +
[2794]13                       open(os.path.join("docs", "HISTORY.txt")).read(),
[1154]14      # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
15      classifiers=[
16        "Framework :: Plone",
17        "Programming Language :: Python",
18        "Topic :: Software Development :: Libraries :: Python Modules",
19        ],
[1157]20      keywords='web plone menu',
[2844]21      author='Quintagroup',
22      author_email='support@quintagroup.com',
[1154]23      url='http://svn.quintagroup.com/products/quintagroup.dropdownmenu',
24      license='GPL',
25      packages=find_packages(exclude=['ez_setup']),
26      namespace_packages=['quintagroup'],
27      include_package_data=True,
28      zip_safe=False,
29      install_requires=[
30          'setuptools',
[2703]31          'plone.registry',
32          'plone.app.registry',
[1154]33      ],
[2871]34      tests_require=tests_require,
35      extras_require=dict(tests=tests_require),
36      test_suite = 'quintagroup.dropdownmenu.tests',
[1154]37      entry_points="""
[1156]38      [z3c.autoinclude.plugin]
39      target = plone
[1154]40      """,
41      )
Note: See TracBrowser for help on using the repository browser.