2015-06-18 19:29:46 -07:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
from setuptools import setup
|
|
|
|
|
2017-10-12 23:35:42 -07:00
|
|
|
__version__ = "4.0.0-r03"
|
2015-06-18 19:37:08 -07:00
|
|
|
|
2015-06-18 19:29:46 -07:00
|
|
|
setup(name='pyircbot',
|
2017-10-12 23:35:42 -07:00
|
|
|
version='4.0.0-r03',
|
2017-01-01 14:59:01 -08:00
|
|
|
description='A modular python irc bot',
|
|
|
|
url='http://gitlab.xmopx.net/dave/pyircbot3/tree/master',
|
|
|
|
author='dpedu',
|
|
|
|
author_email='dave@davepedu.com',
|
|
|
|
packages=['pyircbot', 'pyircbot.modules'],
|
|
|
|
scripts=['bin/pyircbot'],
|
|
|
|
zip_safe=False)
|