1 | from setuptools import setup, find_packages |
---|
2 | import os |
---|
3 | |
---|
4 | version = '1.2.13' |
---|
5 | |
---|
6 | tests_require = ['zope.testing', |
---|
7 | 'collective.testcaselayer'] |
---|
8 | |
---|
9 | setup(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", "CONTRIBUTORS.txt")).read( |
---|
14 | ) + "\n" + open(os.path.join("docs", "HISTORY.txt")).read(), |
---|
15 | classifiers=[ |
---|
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)", |
---|
33 | ], |
---|
34 | keywords='web plone menu dropdown navigation', |
---|
35 | author='Quintagroup', |
---|
36 | author_email='support@quintagroup.com', |
---|
37 | url='http://quintagroup.com/services/plone-development/products/' |
---|
38 | 'quintagroup.dropdownmenu', |
---|
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', |
---|
46 | 'plone.registry', |
---|
47 | 'plone.app.registry', |
---|
48 | ], |
---|
49 | tests_require=tests_require, |
---|
50 | extras_require=dict(tests=tests_require), |
---|
51 | test_suite='quintagroup.dropdownmenu.tests', |
---|
52 | entry_points=""" |
---|
53 | [z3c.autoinclude.plugin] |
---|
54 | target = plone |
---|
55 | """, |
---|
56 | ) |
---|