forked from rtucker-mozilla/python-ircutils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 1.37 KB
/
setup.py
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
#!/usr/bin/env python
## ----------------------------------------------------------------------------#
## IRCUtils setup file.
## To install, type the following in console in this directory:
##
## python setup.py install
##
## To ensure that installation was a success, you may want to open up a Python
## console and try to import the package.
## ----------------------------------------------------------------------------#
from distutils.core import setup
import os
readme_file = os.path.join(os.path.dirname(__file__), 'README')
setup(name='ircutils',
version='0.1.3',
description='IRC framework and utilities. Great for bot creation.',
long_description=open(readme_file).read(),
author='Evan Fosmark',
author_email='[email protected]',
url='http://dev.guardedcode.com/projects/ircutils/',
license="MIT/X11",
platforms="Any",
packages=['ircutils'],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Communications :: Chat :: Internet Relay Chat",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules"
]
)