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

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

Updated classifiers

  • Property svn:eol-style set to native
File size: 1.9 KB
RevLine 
[1154]1from setuptools import setup, find_packages
2import os
3
[3518]4version = '1.2.12'
[1154]5
[3151]6tests_require = ['zope.testing',
[3514]7                 'collective.testcaselayer']
[2871]8
[1154]9setup(name='quintagroup.dropdownmenu',
10      version=version,
[1157]11      description="Multilevel portal dropdown menu for Plone sites.",
[3514]12      long_description=open("README.txt").read(
13      ) + "\n" + open(os.path.join("docs", "HISTORY.txt")).read(),
[1154]14      classifiers=[
[3575]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)",
[3514]32      ],
[3575]33      keywords='web plone menu dropdown navigation',
[2844]34      author='Quintagroup',
35      author_email='support@quintagroup.com',
[3240]36      url='http://quintagroup.com/services/plone-development/products/'
37          'quintagroup.dropdownmenu',
[1154]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',
[2703]45          'plone.registry',
46          'plone.app.registry',
[1154]47      ],
[2871]48      tests_require=tests_require,
49      extras_require=dict(tests=tests_require),
[3151]50      test_suite='quintagroup.dropdownmenu.tests',
[1154]51      entry_points="""
[1156]52      [z3c.autoinclude.plugin]
53      target = plone
[1154]54      """,
55      )
Note: See TracBrowser for help on using the repository browser.