forked from proxypoke/blackbox_IRC-macros
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (37 loc) · 1.71 KB
/
Copy pathsetup.py
File metadata and controls
41 lines (37 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# blackbox IRC macros
# (c) slowpoke (Proxy) < proxypoke at lavabit dot com >
# Offical IRC channel: irc://irc.datnode.net/hacking
# Offical repository on github: https://github.com/proxypoke/blackbox_IRC-macros
# This program, hereafter called 'blackbox',
# is Free Software under the terms of the
# GNU General Public license, which can be found at
# http://www.gnu.org/copyleft/gpl.html.
from distutils.core import setup
import blackbox
setup( name = 'blackbox'
, version = blackbox.__version__
, author = 'slowpoke (Proxy)'
, author_email = 'proxypoke@lavabit.com'
, url = 'https://github.com/proxypoke/blackbox_IRC-macros'
, description = 'A Python module to abstract and encapsulate the IRC '
'protocol'
, packages = ['blackbox']
, classifiers = \
[ 'Programming Language :: Python :: 2'
, 'Programming Language :: Python :: 3'
, 'License :: OSI Approved :: GNU General Public License (GPL)'
, 'Intended Audience :: Developers'
, 'Operating System :: OS Independent'
, 'Development Status :: 4 - Beta'
, 'Topic :: Communications :: Chat :: Internet Relay Chat'
, 'Topic :: Software Development :: Libraries :: Python Modules'
]
, long_description = '''This python module - simply called blackbox from
here on - is intended to encapsulate most of the low level IRC
protocol into handy, easily callable methods of an IRC object that
contains the socket object. It is mainly meant to be used in bots,
but can of course be used for any other application communicating
with an IRC server as
well.
'''
)