source: products/quintagroup.dropdownmenu/trunk/setup.py @ 3287

Last change on this file since 3287 was 3287, 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
[3287]4version = '1.2.5'
[1154]5
[3151]6tests_require = ['zope.testing',
[2871]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      classifiers=[
15        "Framework :: Plone",
16        "Programming Language :: Python",
17        "Topic :: Software Development :: Libraries :: Python Modules",
18        ],
[1157]19      keywords='web plone menu',
[2844]20      author='Quintagroup',
21      author_email='support@quintagroup.com',
[3240]22      url='http://quintagroup.com/services/plone-development/products/'
23          'quintagroup.dropdownmenu',
[1154]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),
[3151]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.