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

Last change on this file since 3142 was 3142, checked in by vmaksymiv, 13 years ago

pep8 fixes

  • Property svn:eol-style set to native
File size: 1.0 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        "Framework :: Plone",
13        "Programming Language :: Python",
14        ],
15      keywords='catalog update plone quintagroup',
16      author='Quintagroup',
17      author_email='support@quintagroup.com',
18      url='http://svn.quintagroup.com/products/quintagroup.catalogupdater',
19      license='GPL',
20      packages=find_packages(exclude=['ez_setup']),
21      namespace_packages=['quintagroup'],
22      include_package_data=True,
23      zip_safe=False,
24      install_requires=[
25          'setuptools',
26          # -*- Extra requirements: -*-
27      ],
28      entry_points="""
29      # -*- Entry points: -*-
30
31      [z3c.autoinclude.plugin]
32      target = plone
33      """,
34      )
Note: See TracBrowser for help on using the repository browser.