added license disclaimer
This commit is contained in:
parent
f24a4ae652
commit
d44df6779c
6
.licor.list
Normal file
6
.licor.list
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
/home/daniel/informatik/python/mathbot/mathbot/__init__.py
|
||||||
|
/home/daniel/informatik/python/mathbot/mathbot/main.py
|
||||||
|
/home/daniel/informatik/python/mathbot/mathbot/static.py
|
||||||
|
/home/daniel/informatik/python/mathbot/mathbot/__main__.py
|
||||||
|
/home/daniel/informatik/python/mathbot/mathbot/rendering.py
|
||||||
|
/home/daniel/informatik/python/mathbot/mathbot/bot.py
|
|
@ -0,0 +1,18 @@
|
||||||
|
# Copyright (c) 2018 Daniel Knüttel #
|
||||||
|
# #
|
||||||
|
# This file is part of mathbot. #
|
||||||
|
# #
|
||||||
|
# mathbot 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 3 of the License, or #
|
||||||
|
# (at your option) any later version. #
|
||||||
|
# #
|
||||||
|
# mathbot 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 mathbot. If not, see <http://www.gnu.org/licenses/>. #
|
||||||
|
# #
|
||||||
|
|
|
@ -1,3 +1,21 @@
|
||||||
|
# Copyright (c) 2018 Daniel Knüttel #
|
||||||
|
# #
|
||||||
|
# This file is part of mathbot. #
|
||||||
|
# #
|
||||||
|
# mathbot 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 3 of the License, or #
|
||||||
|
# (at your option) any later version. #
|
||||||
|
# #
|
||||||
|
# mathbot 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 mathbot. If not, see <http://www.gnu.org/licenses/>. #
|
||||||
|
# #
|
||||||
|
|
||||||
from .main import main
|
from .main import main
|
||||||
|
|
||||||
import sys, logging
|
import sys, logging
|
||||||
|
|
|
@ -1,3 +1,21 @@
|
||||||
|
# Copyright (c) 2018 Daniel Knüttel #
|
||||||
|
# #
|
||||||
|
# This file is part of mathbot. #
|
||||||
|
# #
|
||||||
|
# mathbot 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 3 of the License, or #
|
||||||
|
# (at your option) any later version. #
|
||||||
|
# #
|
||||||
|
# mathbot 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 mathbot. If not, see <http://www.gnu.org/licenses/>. #
|
||||||
|
# #
|
||||||
|
|
||||||
from telegram.ext import RegexHandler
|
from telegram.ext import RegexHandler
|
||||||
from .rendering import get_png
|
from .rendering import get_png
|
||||||
from .static import static_content
|
from .static import static_content
|
||||||
|
|
|
@ -1,3 +1,21 @@
|
||||||
|
# Copyright (c) 2018 Daniel Knüttel #
|
||||||
|
# #
|
||||||
|
# This file is part of mathbot. #
|
||||||
|
# #
|
||||||
|
# mathbot 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 3 of the License, or #
|
||||||
|
# (at your option) any later version. #
|
||||||
|
# #
|
||||||
|
# mathbot 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 mathbot. If not, see <http://www.gnu.org/licenses/>. #
|
||||||
|
# #
|
||||||
|
|
||||||
from telegram.ext import Updater, CommandHandler, RegexHandler
|
from telegram.ext import Updater, CommandHandler, RegexHandler
|
||||||
from . import bot
|
from . import bot
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,21 @@
|
||||||
|
# Copyright (c) 2018 Daniel Knüttel #
|
||||||
|
# #
|
||||||
|
# This file is part of mathbot. #
|
||||||
|
# #
|
||||||
|
# mathbot 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 3 of the License, or #
|
||||||
|
# (at your option) any later version. #
|
||||||
|
# #
|
||||||
|
# mathbot 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 mathbot. If not, see <http://www.gnu.org/licenses/>. #
|
||||||
|
# #
|
||||||
|
|
||||||
from io import BytesIO
|
from io import BytesIO
|
||||||
import matplotlib.pyplot as plt
|
import matplotlib.pyplot as plt
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,21 @@
|
||||||
|
# Copyright (c) 2018 Daniel Knüttel #
|
||||||
|
# #
|
||||||
|
# This file is part of mathbot. #
|
||||||
|
# #
|
||||||
|
# mathbot 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 3 of the License, or #
|
||||||
|
# (at your option) any later version. #
|
||||||
|
# #
|
||||||
|
# mathbot 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 mathbot. If not, see <http://www.gnu.org/licenses/>. #
|
||||||
|
# #
|
||||||
|
|
||||||
|
|
||||||
_help_text = '''
|
_help_text = '''
|
||||||
**RMathBot** -- render LaTeX math commands
|
**RMathBot** -- render LaTeX math commands
|
||||||
|
|
Loading…
Reference in New Issue
Block a user