source: products/quintagroup.zopeskel.blayer/trunk/setup.py @ 1514

Last change on this file since 1514 was 1514, checked in by mylan, 14 years ago

Added browser layer subtemplate for archetype template

  • Property svn:eol-style set to native
File size: 1.2 KB
Line 
1from setuptools import setup, find_packages
2import os
3
4version = '0.1'
5
6setup(name='quintagroup.zopeskel.blayer',
7      version=version,
8      description="Browser Layout subtemplate for Archetype template",
9      long_description=open(os.path.join("docs", "README.txt")).read() + "\n" +
10                       open(os.path.join("docs", "HISTORY.txt")).read(),
11      # Get more strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
12      classifiers=[
13        "Programming Language :: Python",
14        ],
15      keywords='ZopeSkel archetype subtemplate',
16      author='Quintagroup',
17      author_email='mylan at quintagroup.com',
18      url='http://svn.quintagroup.com/products/quintagroup.zopeskel.blayer',
19      license='GPL',
20      packages=find_packages(exclude=['ez_setup']),
21      namespace_packages=['quintagroup', 'quintagroup.zopeskel'],
22      include_package_data=True,
23      zip_safe=False,
24      install_requires=[
25          'ZopeSkel',
26          'PasteScript>=1.6.3',
27          # -*- Extra requirements: -*-
28      ],
29      setup_requires=['setuptools',],
30      entry_points="""
31      [zopeskel.zopeskel_sub_template]
32      browserlayer = quintagroup.zopeskel.blayer:BrowserLayer
33      # -*- Entry points: -*-
34      """,
35      )
Note: See TracBrowser for help on using the repository browser.