2017-09-27 22:44:32 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='pinhook',
|
2017-10-10 15:57:15 +00:00
|
|
|
version='0.2.0',
|
2017-10-02 18:01:51 +00:00
|
|
|
license="MIT",
|
|
|
|
description="A pluggable IRC bot framework in Python",
|
2017-09-27 22:44:32 +00:00
|
|
|
install_requires=[
|
|
|
|
'irc',
|
|
|
|
],
|
|
|
|
packages=[
|
|
|
|
'pinhook',
|
|
|
|
]
|
|
|
|
)
|