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