from conans import ConanFile, tools


class Recipe{name}Conan(ConanFile):
    name = "{name}"
    version = "{version}"
    license = "<Put the package license here>"
    author = "<Put your name here> <And your email here>"
    url = "<Package recipe repository url here, for issues about the package>"
    description = "<Description of {name} here>"
    topics = ("<Put some tag here>", "<here>", "<and here>")
    no_copy_source = True

    def source(self):
        tools.get(**self.conan_data["sources"][self.version])

    def package(self):
        self.copy("*.h", "include")

    def package_id(self):
        self.info.header_only()



