setup.py
changeset 97 cc559fb45cb2
parent 95 d3bad4e242d7
child 104 2e139fa0e8eb
equal deleted inserted replaced
96:d02b0b67c29c 97:cc559fb45cb2
     1 #!/usr/bin/env python
     1 #!/usr/bin/env python
     2 # encoding: utf-8
     2 # encoding: utf-8
     3 
     3 
     4 __version__ = '0.1dev'
     4 __version__ = '0.2dev'
     5 
     5 
     6 from distutils.core import setup
     6 from distutils.core import setup
     7 
     7 
     8 setup(
     8 setup(
     9     name            = 'pvl-irker',
     9     name            = 'pvl-irker',
    25         'bin/pvl.irk',
    25         'bin/pvl.irk',
    26         'bin/pvl.irker-syslog',
    26         'bin/pvl.irker-syslog',
    27     ],
    27     ],
    28 
    28 
    29     data_files  = [
    29     data_files  = [
    30         ('etc/pvl', [ 'etc/syslog.conf' ] ),
    30         ('etc/pvl', [ 'etc/syslog.conf.dist' ] ),
    31     ],
    31     ],
    32 )
    32 )
    33 
    33