Projects : yrc : yrc_input_fixes

yrc/setup.py

Dir - Raw

1from distutils.core import setup
2
3setup(
4 name='yrc',
5 version='95K',
6 description='A Unix IRC client',
7 py_modules=['yrc', 'yterm'],
8 scripts=['yrc', 'yrc2local'],
9 options={'install_lib': {'force': 1}}, # as in "setup.py install -f": force it to always install modules, AS IT WAS TOLD TO, even if target file happens to have newer timestamp than source.
10)