forked from toastdriven/toastbot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 744 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 744 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
import os
README = os.path.join(os.path.dirname(__file__), 'README.md')
setup(
name='toastbot',
version='0.4.3',
description='A clean, extensible IRC bot using irckit.',
long_description=open(README, 'r').read(),
author='Daniel Lindsley',
author_email='daniel@toastdriven.com',
py_modules = ['toastbot'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'
],
url = 'http://github.com/toastdriven/toastbot'
)