package = "Lua-Telegram-API"
version = "0.1-1"
source = {
   url = "git://github.com/jonnyguio/telegram-bot-api",
   tag = "v0.1"
}
description = {
   summary = "An API to the Telegram Bots, written in Lua.",
   detailed = [[
        Fully develop your own telegram bot using lua.
        Look at the website for further information.
   ]],
   homepage = "https://github.com/jonnyguio/telegram-bot-api",
   license = "MIT"
}
dependencies = {
   "lua >= 5.1, < 5.4",
   "luasec >= 0.5",
   "luajson",
   "multipart"
}
build = {
    type = "builtin",
    modules = {
--        ["telegram"] = "src/main.lua",
        ["telegram.api"] = "src/telegram-api.lua"
        
    },
    copy_directories = { "docs" }
}