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

Last change on this file was 3320, checked in by fenix, 12 years ago

Preparing 1.2.0.2 release

  • Property svn:eol-style set to native
File size: 1.3 KB
Line 
1from setuptools import setup, find_packages
2import os
3
4version = '1.2.0.2'
5
6tests_require=['zope.testing',
7               'collective.testcaselayer']
8
9setup(name='quintagroup.dropdownmenu',
10      version=version,
11      description="Multilevel portal dropdown menu for Plone sites.",
12      long_description=open("README.txt").read() + "\n" +
13                       open(os.path.join("docs", "HISTORY.txt")).read(),
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        ],
20      keywords='web plone menu',
21      author='Quintagroup',
22      author_email='support@quintagroup.com',
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',
31          'plone.registry',
32          'plone.app.registry',
33      ],
34      tests_require=tests_require,
35      extras_require=dict(tests=tests_require),
36      test_suite = 'quintagroup.dropdownmenu.tests',
37      entry_points="""
38      [z3c.autoinclude.plugin]
39      target = plone
40      """,
41      )
Note: See TracBrowser for help on using the repository browser.