You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
405 B
14 lines
405 B
#!/usr/bin/env python3 |
|
from setuptools import setup |
|
|
|
__version__ = "4.0.0-r03" |
|
|
|
setup(name='pyircbot', |
|
version='4.0.0-r03', |
|
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)
|
|
|