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

Last change on this file was 3591, checked in by vmaksymiv, 11 years ago

Updated classifiers

  • Property svn:eol-style set to native
File size: 1.6 KB
Line 
1from setuptools import setup, find_packages
2import os
3
4version = '0.1.1'
5
6setup(name='quintagroup.catalogupdater',
7      version=version,
8      description="Package for controlled ZCatalog object updating",
9      long_description=open("README.txt").read() + "\n" +
10      open(os.path.join("docs", "HISTORY.txt")).read(),
11      classifiers=[
12          "Development Status :: 5 - Production/Stable",
13          "Environment :: Web Environment",
14          "Framework :: Plone",
15          "Framework :: Plone :: 3.2",
16          "Framework :: Plone :: 3.3",
17          "Framework :: Plone :: 4.0",
18          "Framework :: Plone :: 4.1",
19          "Framework :: Plone :: 4.2",
20          "Framework :: Plone :: 4.3",
21          "Framework :: Zope2",
22          "Framework :: Zope3",
23          "License :: OSI Approved :: GNU General Public License (GPL)",
24          "Operating System :: OS Independent",
25          "Programming Language :: Python",
26          "Topic :: Software Development :: Libraries :: Python Modules",
27      ],
28      keywords='catalog update plone quintagroup',
29      author='Quintagroup',
30      author_email='support@quintagroup.com',
31      url='http://svn.quintagroup.com/products/quintagroup.catalogupdater',
32      license='GPL',
33      packages=find_packages(exclude=['ez_setup']),
34      namespace_packages=['quintagroup'],
35      include_package_data=True,
36      zip_safe=False,
37      install_requires=[
38          'setuptools',
39          # -*- Extra requirements: -*-
40      ],
41      entry_points="""
42      # -*- Entry points: -*-
43
44      [z3c.autoinclude.plugin]
45      target = plone
46      """,
47      )
Note: See TracBrowser for help on using the repository browser.