mirror of
https://github.com/miaowware/qrm2.git
synced 2024-11-10 18:33:34 -05:00
40 lines
1.2 KiB
Python
40 lines
1.2 KiB
Python
"""
|
|
Static info about the bot.
|
|
---
|
|
Copyright (C) 2019 Abigail Gold, 0x5c
|
|
|
|
This file is part of discord-qrmbot.
|
|
|
|
discord-qrmbot is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
---
|
|
|
|
`authors`: The authors of the bot.
|
|
|
|
`description`: A description of the bot.
|
|
|
|
`license`: The license the bot is released under.
|
|
|
|
`contrubuting`: Info on how to contribute to the bot.
|
|
|
|
`release_timestamp`: When the bot was last released.
|
|
"""
|
|
|
|
authors = ("@ClassAbbyAmplifier#2229", "@0x5c")
|
|
description = """A description goes here."""
|
|
license = "A license goes here."
|
|
contributing = "Info on contributing goes here."
|
|
release_timestamp = "not yet :P"
|