Martin Mareš
2 years ago
7 changed files with 30 additions and 7 deletions
@ -1,6 +1,6 @@ |
|||||
import discord |
import discord |
||||
from discord.ext import commands |
from discord.ext import commands |
||||
from utils.ksp_utils import * |
from hrochobot.utils.ksp_utils import * |
||||
|
|
||||
class Ksp(commands.Cog): |
class Ksp(commands.Cog): |
||||
def __init__(self, bot): |
def __init__(self, bot): |
@ -1,5 +1,5 @@ |
|||||
import discord |
import discord |
||||
import utils.data as data |
import hrochobot.utils.data as data |
||||
from discord.ext import commands |
from discord.ext import commands |
||||
from discord.utils import get |
from discord.utils import get |
||||
|
|
@ -0,0 +1,19 @@ |
|||||
|
#!/usr/bin/env python3 |
||||
|
|
||||
|
import setuptools |
||||
|
|
||||
|
setuptools.setup( |
||||
|
name='hrochbot', |
||||
|
version='1.0', |
||||
|
description='Discordový robot pro KSP', |
||||
|
packages=['hrochobot', 'hrochobot/cogs', 'hrochobot/utils'], |
||||
|
scripts=[ |
||||
|
'bin/hrochobot', |
||||
|
], |
||||
|
include_package_data=True, |
||||
|
zip_safe=False, |
||||
|
install_requires=[ |
||||
|
'py-cord', |
||||
|
'requests', |
||||
|
], |
||||
|
) |
Loading…
Reference in new issue