setup_irker.py
changeset 224 ed410776effd
parent 223 6842794c20e8
child 225 3c2d0dd42045
equal deleted inserted replaced
223:6842794c20e8 224:ed410776effd
     1 #!/usr/bin/env python
       
     2 # encoding: utf-8
       
     3 
       
     4 __version__ = '0.4.1'
       
     5 
       
     6 from distutils.core import setup
       
     7 
       
     8 setup(
       
     9     name            = 'pvl-irker',
       
    10     version         = __version__,
       
    11     description     = "Päivölä IRC utilities",
       
    12 
       
    13     author          = "Tero Marttila",
       
    14     author_email    = "terom@paivola.fi",
       
    15 
       
    16     packages    = [
       
    17         'pvl',
       
    18         'pvl.irker',
       
    19         'pvl.syslog',
       
    20         'twisted.plugins',
       
    21     ],
       
    22 
       
    23     scripts     =  [
       
    24         'bin/pvl.irker',
       
    25         'bin/pvl.irk',
       
    26         'bin/pvl.irker-syslog',
       
    27     ],
       
    28 
       
    29     data_files  = [
       
    30         ('etc/pvl', [ 'etc/syslog.conf.dist' ] ),
       
    31     ],
       
    32 )
       
    33