mirror of
https://github.com/KeqingMoe/argparse.git
synced 2025-07-03 22:54:39 +00:00
11 lines
233 B
Python
11 lines
233 B
Python
from conans import ConanFile
|
|
|
|
class ArgparseConan(ConanFile):
|
|
name = "argparse"
|
|
version = "2.5"
|
|
exports_sources = "include/argparse.hpp"
|
|
no_copy_source = True
|
|
|
|
def package(self):
|
|
self.copy("argparse.hpp")
|