~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to turbozpt-setup.py

add a lightly hacked copy of turbozpt (it's not much code)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
from setuptools import setup, find_packages
 
2
from turbogears.finddata import find_package_data
 
3
 
 
4
setup(
 
5
    name="TurboZpt",
 
6
    version="0.1.4",
 
7
    description="TurboGears plugin to support use of Zope Page Templates",
 
8
    author="Bas van Oostveen",
 
9
    author_email="v.oostveen@gmail.com",
 
10
    url="http://ido.nl.eu.org/turbozpt/",
 
11
    download_url="http://ido.nl.eu.org/turbozpt/TurboZpt-0.1.2.tar.gz",
 
12
    license="MIT",
 
13
#    install_requires = ["TurboGears >= 0.9a0dev", "ZopePageTemplates"],
 
14
    install_requires = ["TurboGears >= 0.9a0dev"],
 
15
    zip_safe=False,
 
16
    packages=find_packages(),
 
17
    classifiers = [
 
18
        'Development Status :: 3 - Alpha',
 
19
        #'Environment :: TurboGears',
 
20
        'Operating System :: OS Independent',
 
21
        'Programming Language :: Python',
 
22
        'License :: OSI Approved :: MIT License',
 
23
        'Topic :: Software Development :: Libraries :: Python Modules'
 
24
    ],
 
25
    entry_points="""
 
26
    [python.templating.engines]
 
27
    zpt = turbozpt.zptsupport:TurboZpt
 
28
    """,
 
29
    test_suite = 'nose.collector',
 
30
    )
 
31