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

Last change on this file since 3628 was 3584, checked in by kroman0, 12 years ago

pep8

  • Property svn:eol-style set to native
File size: 1.9 KB
Line 
1from setuptools import setup, find_packages
2import os
3
4version = '1.2.12'
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(
13      ) + "\n" + open(os.path.join("docs", "HISTORY.txt")).read(),
14      classifiers=[
15          "Environment :: Web Environment",
16          "Framework :: Zope2",
17          "Framework :: Plone",
18          "Framework :: Plone :: 3.2",
19          "Framework :: Plone :: 3.3",
20          "Framework :: Plone :: 4.0",
21          "Framework :: Plone :: 4.1",
22          "Framework :: Plone :: 4.2",
23          "Framework :: Plone :: 4.3",
24          "Programming Language :: Python",
25          "Development Status :: 5 - Production/Stable",
26          "Intended Audience :: Developers",
27          "Natural Language :: English",
28          "Operating System :: OS Independent",
29          "Topic :: Internet :: WWW/HTTP :: Dynamic Content",
30          "Topic :: Software Development :: Libraries :: Python Modules",
31          "License :: OSI Approved :: GNU General Public License (GPL)",
32      ],
33      keywords='web plone menu dropdown navigation',
34      author='Quintagroup',
35      author_email='support@quintagroup.com',
36      url='http://quintagroup.com/services/plone-development/products/'
37          'quintagroup.dropdownmenu',
38      license='GPL',
39      packages=find_packages(exclude=['ez_setup']),
40      namespace_packages=['quintagroup'],
41      include_package_data=True,
42      zip_safe=False,
43      install_requires=[
44          'setuptools',
45          'plone.registry',
46          'plone.app.registry',
47      ],
48      tests_require=tests_require,
49      extras_require=dict(tests=tests_require),
50      test_suite='quintagroup.dropdownmenu.tests',
51      entry_points="""
52      [z3c.autoinclude.plugin]
53      target = plone
54      """,
55      )
Note: See TracBrowser for help on using the repository browser.