add barebones setup.py

pull/1/head
Mallory Hancock 2017-09-27 15:44:32 -07:00
parent fd9acc1358
commit eea3302542
1 changed files with 12 additions and 0 deletions

12
setup.py 100755
View File

@ -0,0 +1,12 @@
#!/usr/bin/env python3
from setuptools import setup
setup(
name='pinhook',
install_requires=[
'irc',
],
packages=[
'pinhook',
]
)