13 lines
167 B
Python
13 lines
167 B
Python
|
#!/usr/bin/env python3
|
||
|
from setuptools import setup
|
||
|
|
||
|
setup(
|
||
|
name='pinhook',
|
||
|
install_requires=[
|
||
|
'irc',
|
||
|
],
|
||
|
packages=[
|
||
|
'pinhook',
|
||
|
]
|
||
|
)
|