local git_ref = 'v0.1.0'
local modrev = '0.1.0'
local specrev = '-1'

local repo_url = 'https://github.com/ColinKennedy/nvim-best-practices-plugin-template'

rockspec_format = '3.0'
package = 'nvim-best-practices-plugin-template'
version = modrev .. specrev

description = {
  summary = 'A no-nonsense template for making high-quality Neovim plugins. It has all the best opinions, pinky promise',
  detailed = '',
  labels = { 'neovim', 'neovim-plugin', 'nvim', 'nvim-plugin', 'plugin-template' } ,
  homepage = 'https://github.com/ColinKennedy/nvim-best-practices-plugin-template',
  license = 'MIT'
}

dependencies = { 'lua >= 5.1' } 

source = {
  url = repo_url .. '/archive/' .. git_ref .. '.zip',
  dir = 'nvim-best-practices-plugin-template-' .. '0.1.0',
}

build = {
  type = 'builtin',
  copy_directories = { },
}
