|
1 # -*- coding: utf-8 -*- |
|
2 |
1 # Copyright (c) 2012 netzguerilla.net <iro@netzguerilla.net> |
3 # Copyright (c) 2012 netzguerilla.net <iro@netzguerilla.net> |
2 # |
4 # |
3 # This file is part of Iro. |
5 # This file is part of Iro. |
4 # |
6 # |
5 # Permission is hereby granted, free of charge, to any person obtaining a copy of |
7 # Permission is hereby granted, free of charge, to any person obtaining a copy of |
17 # PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT |
19 # PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT |
18 # HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
20 # HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
19 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE |
21 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE |
20 # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
22 # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
21 |
23 |
22 # -*- coding: utf-8 -*- |
|
23 |
24 |
24 from setuptools import setup |
25 from setuptools import setup |
25 from iro import __version__ |
26 from iro import __version__ |
26 |
27 |
27 def refresh_plugin_cache(): |
28 def refresh_plugin_cache(): |
30 |
31 |
31 setup(name='iro', |
32 setup(name='iro', |
32 version=__version__, |
33 version=__version__, |
33 packages=['iro','iro.controller','iro.view','iro.model','iro.offer','iro.tests', 'iro.test_helpers','twisted.plugins'], |
34 packages=['iro','iro.controller','iro.view','iro.model','iro.offer','iro.tests', 'iro.test_helpers','twisted.plugins'], |
34 setup_requires = ["ngmodules>=0.2","mock"], |
35 setup_requires = ["ngmodules>=0.2","mock"], |
35 install_requires=['twisted>=11.1.0',"ConfigParser","sqlalchemy","MySQL-python","SOAPpy",'decorator'], |
36 install_requires=['twisted>=11.1.0',"ConfigParser","sqlalchemy","MySQL-python","SOAPpy",'decorator', 'txJSON-RPC'], |
36 #test_suite="tests", #ToDo switch to trial |
37 #test_suite="tests", #ToDo switch to trial |
37 description='Non Blocking Interface for sending a bunsh of SMSes, FAXes and Mails.', |
38 description='Non Blocking Interface for sending a bunsh of SMSes, FAXes and Mails.', |
38 author='Sandro Knauß', |
39 author='Sandro Knauß', |
39 author_email='knauss@netzguerilla.net', |
40 author_email='knauss@netzguerilla.net', |
40 url='https://netzguerilla.net/iro', |
41 url='https://netzguerilla.net/iro', |