diff -r 8d30203f07b3 -r d5ebbcccc41b setup.py --- a/setup.py Thu Sep 27 17:13:19 2012 +0200 +++ b/setup.py Thu Sep 27 17:14:27 2012 +0200 @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- + # Copyright (c) 2012 netzguerilla.net # # This file is part of Iro. @@ -19,7 +21,6 @@ # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -# -*- coding: utf-8 -*- from setuptools import setup from iro import __version__ @@ -32,7 +33,7 @@ version=__version__, packages=['iro','iro.controller','iro.view','iro.model','iro.offer','iro.tests', 'iro.test_helpers','twisted.plugins'], setup_requires = ["ngmodules>=0.2","mock"], - install_requires=['twisted>=11.1.0',"ConfigParser","sqlalchemy","MySQL-python","SOAPpy",'decorator'], + install_requires=['twisted>=11.1.0',"ConfigParser","sqlalchemy","MySQL-python","SOAPpy",'decorator', 'txJSON-RPC'], #test_suite="tests", #ToDo switch to trial description='Non Blocking Interface for sending a bunsh of SMSes, FAXes and Mails.', author='Sandro Knauß',