setup.py
changeset 302 3f4bdea2abbf
parent 301 d5ebbcccc41b
equal deleted inserted replaced
90:eb04ac3a8327 302:3f4bdea2abbf
       
     1 # -*- coding: utf-8 -*-
       
     2 
       
     3 # Copyright (c) 2012 netzguerilla.net <iro@netzguerilla.net>
       
     4 # 
       
     5 # This file is part of Iro.
       
     6 # 
       
     7 # Permission is hereby granted, free of charge, to any person obtaining a copy of
       
     8 # this software and associated documentation files (the "Software"), to deal in
       
     9 # the Software without restriction, including without limitation the rights to use,
       
    10 # copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
       
    11 # #Software, and to permit persons to whom the Software is furnished to do so,
       
    12 # subject to the following conditions:
       
    13 # 
       
    14 # The above copyright notice and this permission notice shall be included in
       
    15 # all copies or substantial portions of the Software.
       
    16 # 
       
    17 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
       
    18 # INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
       
    19 # PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
       
    20 # HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
       
    21 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
       
    22 # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
       
    23 
       
    24 
     1 from setuptools import setup
    25 from setuptools import setup
     2 setup(name="iro",version='0.1',install_requires=["xmlrpclib","ConfigParser","base64","multiprocessing"])
    26 from iro import __version__
       
    27 
       
    28 def refresh_plugin_cache():
       
    29         from twisted.plugin import IPlugin, getPlugins
       
    30         list(getPlugins(IPlugin))
       
    31 
       
    32 setup(name='iro',
       
    33         version=__version__,
       
    34         packages=['iro','iro.controller','iro.view','iro.model','iro.offer','iro.tests', 'iro.test_helpers','twisted.plugins'],
       
    35         setup_requires = ["ngmodules>=0.2","mock"],
       
    36         install_requires=['twisted>=11.1.0',"ConfigParser","sqlalchemy","MySQL-python","SOAPpy",'decorator', 'txJSON-RPC'],
       
    37         #test_suite="tests",                               #ToDo switch to trial
       
    38         description='Non Blocking Interface for sending a bunsh of SMSes, FAXes and Mails.',
       
    39         author='Sandro Knauß',
       
    40         author_email='knauss@netzguerilla.net',
       
    41         url='https://netzguerilla.net/iro',
       
    42         scripts=["bin/iro-install"],
       
    43         package_data={
       
    44             'twisted': ['plugins/iro_plugin.py'],
       
    45         },
       
    46         license = "MIT",
       
    47         classifiers=[
       
    48             "Development Status :: 3 - Alpha",
       
    49             "Environment :: No Input/Output (Daemon)",
       
    50             "Framework :: Twisted",
       
    51             "Topic :: Communications :: Fax",
       
    52             "Topic :: Communications :: Email",
       
    53             "Topic :: Communications :: Sms",
       
    54             "Programming Language :: Python",
       
    55             "License :: OSI Approved :: MIT License",
       
    56             ]
       
    57         )
       
    58 
       
    59 refresh_plugin_cache()