source:
ralphm-patches/minimum-Twisted.patch
Last change on this file was 78:361e2111a663, checked in by Ralph Meijer <ralphm@…>, 6 years ago | |
---|---|
File size: 859 bytes |
-
setup.py
# HG changeset patch # Parent 864d257886840e41b04803163c858ae51b5e8d04 diff --git a/setup.py b/setup.py
a b 3 3 # Copyright (c) Ralph Meijer. 4 4 # See LICENSE for details. 5 5 6 import sys 6 7 from setuptools import setup 7 8 8 9 # Make sure 'twisted' doesn't appear in top_level.txt … … 27 28 28 29 egg_info.write_toplevel_names = _hacked_write_toplevel_names 29 30 31 if sys.version < (3, 0): 32 requiredTwisted = "15.5.0" 33 else: 34 requiredTwisted = "16.4.0" 35 30 36 setup(name='wokkel', 31 37 version='0.7.1', 32 38 description='Twisted Jabber support library', … … 44 50 package_data={'twisted.plugins': ['twisted/plugins/server.py']}, 45 51 zip_safe=False, 46 52 install_requires=[ 47 'Twisted >= 10.0.0',53 'Twisted >= %s' % requiredTwisted, 48 54 'python-dateutil', 49 55 ], 50 56 )
Note: See TracBrowser
for help on using the repository browser.