source: products/Products.CacheSetup/tags/1.2.1-qg/setup.py @ 3305

Last change on this file since 3305 was 3296, checked in by fenix, 12 years ago

Load Products.CacheSetup?-1.2.1 into vendor/Products.CacheSetup?/current.

  • Property svn:eol-style set to native
File size: 1.2 KB
Line 
1from setuptools import setup, find_packages
2import os
3
4version = open(os.path.join("Products", "CacheSetup", "VERSION.txt")).read().strip()
5
6setup(name='Products.CacheSetup',
7      version=version,
8      description="Control caching of Plone sites",
9      long_description=open("README.txt").read() + "\n" +
10                       open(os.path.join("docs", "INSTALL.txt")).read() + "\n" +
11                       open(os.path.join("docs", "CHANGES.txt")).read(),
12      classifiers=[
13        "Framework :: Plone",
14        "Programming Language :: Python",
15        "Topic :: Software Development :: Libraries :: Python Modules",
16        ],
17      keywords='cache caching',
18      author='Geoff Davis',
19      author_email='plone-developers@lists.sourceforge.net',
20      url='http://svn.plone.org/svn/collective/Products.CacheSetup',
21      license='ZPL',
22      packages=find_packages(exclude=['ez_setup']),
23      namespace_packages=['Products'],
24      include_package_data=True,
25      zip_safe=False,
26      install_requires=[
27          'setuptools',
28          'Products.CMFSquidTool',
29          'Products.PageCacheManager',
30          'Products.PolicyHTTPCacheManager',
31      ],
32      entry_points="""
33      # -*- Entry points: -*-
34      """,
35      )
Note: See TracBrowser for help on using the repository browser.