import telebot
from telebot import types
bot = telebot.TeleBot('токен')
@bot.message_handler(commands=['start'])
def start(message):
markup = types.InlineKeyboardMarkup()
markup.add(types.InlineKeyboardButton("текст"))
bot.send_message(message.chat.id, 'текст', reply_markup=markup)
bot.polling(none_stop=True)