2bfb83ab6e
The emesene Windows Live Messenger client supports tabbed chat, custom emoticons, file transfers, offline messaging, personal messages, nudges and MSN Plus!. The multilingual GUI can be extended through customization including themes, smilies, sounds and tweaks to the conversation format. requested by and 'please commit' robert@
20 lines
606 B
Python
20 lines
606 B
Python
# $OpenBSD: setup.py,v 1.1.1.1 2008/07/10 13:22:41 wcmaier Exp $
|
|
|
|
from distutils.core import setup
|
|
import sys, os
|
|
|
|
setup(
|
|
name = "emesene",
|
|
version = "1.0",
|
|
description = "client for the Windows Live Messenger chat network",
|
|
author = "Roger Duran",
|
|
author_email = "rogerduran@users.sourceforge.net",
|
|
license = "GPLv2",
|
|
url = "http://www.emesene.org/",
|
|
packages = ('emesene', 'emesene.emesenelib',
|
|
'emesene.plugins_base',
|
|
'emesene.plugins_base.currentSong', 'emesene.abstract'),
|
|
package_dir = {'': 'lib'},
|
|
scripts = ('emesene',)
|
|
)
|