source: products/quintagroup.portlet.collection/trunk/setup.py @ 3595

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

Updated classifiers

File size: 1.7 KB
Line 
1from setuptools import setup, find_packages
2import os
3
4version = '1.1.1'
5
6setup(name='quintagroup.portlet.collection',
7      version=version,
8      description="Extended collection portlet",
9      long_description=open("README.txt").read() + "\n" +
10      open(os.path.join("docs", "HISTORY.txt")).read(),
11      # Get more strings from
12      # http://www.python.org/pypi?%3Aaction=list_classifiers
13      classifiers=[
14          "Environment :: Web Environment",
15          "Framework :: Zope2",
16          "Framework :: Plone",
17          "Framework :: Plone :: 3.2",
18          "Framework :: Plone :: 3.3",
19          "Framework :: Plone :: 4.1",
20          "Framework :: Plone :: 4.2",
21          "Framework :: Plone :: 4.3",
22          "Programming Language :: Python",
23          "Development Status :: 5 - Production/Stable",
24          "Intended Audience :: Developers",
25          "Natural Language :: English",
26          "Operating System :: OS Independent",
27          "Topic :: Internet :: WWW/HTTP :: Dynamic Content",
28          "Topic :: Software Development :: Libraries :: Python Modules",
29          "License :: OSI Approved :: GNU General Public License (GPL)",
30      ],
31      keywords='plone portlet collection quintagroup',
32      author='Melnychuk Taras',
33      author_email='fenix@quintagroup.com',
34      url='',
35      license='GPL',
36      packages=find_packages(exclude=['ez_setup']),
37      namespace_packages=['quintagroup', 'quintagroup.portlet'],
38      include_package_data=True,
39      zip_safe=False,
40      install_requires=[
41          'setuptools',
42          'plone.portlet.collection'
43          # -*- Extra requirements: -*-
44      ],
45      entry_points="""
46      # -*- Entry points: -*-
47      """,
48      )
Note: See TracBrowser for help on using the repository browser.