2009-06-01 14:39:51 -04:00
|
|
|
# $OpenBSD: setup.py,v 1.2 2009/06/01 18:39:52 wcmaier Exp $
|
2006-11-10 23:28:17 -05:00
|
|
|
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name = "Console Jabber Client",
|
2009-06-01 14:39:51 -04:00
|
|
|
version = "1.0.1",
|
2006-11-10 23:28:17 -05:00
|
|
|
description = "Jabber/XMPP client for text terminals",
|
|
|
|
author = "Jacek Konieczny",
|
|
|
|
author_email = "jajcus@bnet.pl",
|
|
|
|
license = "GPL",
|
|
|
|
url = "http://jabberstudio.org/projects/cjc",
|
|
|
|
packages = ('cjc', 'cjc.ui'),
|
|
|
|
)
|