summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJason Madden <jamadden@gmail.com>2017-09-11 13:25:53 -0500
committerJason Madden <jamadden@gmail.com>2017-09-11 16:15:46 -0500
commit68661921272216395c07796a8d34914750e7eb68 (patch)
tree9dc8f7b1d6beb886718c290ba7e38c235944bfa8 /src
parente2d292a3623dd989a0d004a9a2bacc0d24346ef8 (diff)
downloadzope-security-68661921272216395c07796a8d34914750e7eb68.tar.gz
Remove unused and broken zope.security.setup.
Diffstat (limited to 'src')
-rw-r--r--src/zope/security/setup.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/zope/security/setup.py b/src/zope/security/setup.py
deleted file mode 100644
index d8f8f33..0000000
--- a/src/zope/security/setup.py
+++ /dev/null
@@ -1,20 +0,0 @@
-#! /usr/bin/env python
-##############################################################################
-#
-# Copyright (c) 2001, 2002 Zope Foundation and Contributors.
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (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.
-#
-##############################################################################
-"""Security setup
-"""
-from distutils.core import setup, Extension
-
-setup(name="_Proxy", version = "0.1",
- ext_modules=[Extension("_Proxy", ["_Proxy.c"])])