14 lines
202 B
Python
14 lines
202 B
Python
from setuptools import setup
|
|
|
|
requires = ["pydle","requests"]
|
|
|
|
setup(
|
|
name='bot',
|
|
version='0.1',
|
|
py_modules=[
|
|
'bot',
|
|
],
|
|
entry_points={
|
|
'console_scripts': ['radio-bot = bot:run']
|
|
},
|
|
) |