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

Last change on this file was 3642, checked in by kroman0, 11 years ago

Use remote url for links

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