2017-09-27 22:44:32 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='pinhook',
|
2017-10-09 20:45:49 +00:00
|
|
|
version='0.1.1',
|
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',
|
|
|
|
]
|
|
|
|
)
|