1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
Description: Don't use setuptools.
Author: Jakub Wilk <jwilk@debian.org>
Forwarded: not-needed
Last-Update: 2012-02-22
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
#!/usr/bin/python
-from setuptools import setup, find_packages
+from distutils.core import setup
from byteplay import __version__ as lib_version
setup(
@@ -11,7 +11,6 @@
download_url='http://code.google.com/p/byteplay/downloads/list',
version = lib_version,
py_modules = ['byteplay'],
- zip_safe = True,
license='LGPL',
description='bytecode manipulation library',
long_description = """byteplay lets you convert Python code objects into equivalent objects which are easy to play with, and lets you convert those objects back into living Python code objects. It's useful for applying crazy transformations on Python functions, and is also useful in learning Python byte code intricacies. It currently works with Python 2.4 and up.
|