[Zope-Checkins] CVS: Zope3/lib/python/Zope/Security/secproxy - setup.py:1.1.2.1

Guido van Rossum guido@python.org
Wed, 17 Apr 2002 21:00:07 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/Security/secproxy
In directory cvs.zope.org:/tmp/cvs-serv26114

Added Files:
      Tag: SecurityProxy-branch
	setup.py 
Log Message:
Forgot this.

=== Added File Zope3/lib/python/Zope/Security/secproxy/setup.py ===
#! /usr/bin/env python
##############################################################################
#
# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
# All Rights Reserved.
# 
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
# 
##############################################################################

from distutils.core import setup, Extension

setup(name="secproxy", version = "0.1",
      ext_modules=[Extension("secproxy", ["secproxy.c"])])