Skip to content

Commit 478f582

Browse files
committed
Adding metadata to conan
1 parent f542179 commit 478f582

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

conanfile.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,17 @@ def get_version():
1010
except Exception:
1111
return None
1212

13-
class HelloConan(ConanFile):
13+
class CLI11Conan(ConanFile):
1414
name = "CLI11"
1515
version = get_version()
16-
url = "https://github.com/CLIUtils/CLI11"
17-
settings = "os", "compiler", "arch", "build_type"
18-
license = "BSD 3 clause"
1916
description = "Command Line Interface toolkit for C++11"
17+
topics = ("cli", "c++11", "parser", "cli11")
18+
url = "https://github.com/CLIUtils/CLI11"
19+
homepage = "https://github.com/CLIUtils/CLI11"
20+
author = "Henry Schreiner <hschrein@cern.ch>"
21+
license = "BSD-3-Clause"
2022

23+
settings = "os", "compiler", "arch", "build_type"
2124
exports_sources = "LICENSE", "README.md", "include/*", "extern/*", "cmake/*", "CMakeLists.txt", "tests/*"
2225

2326
def build(self): # this is not building a library, just tests

0 commit comments

Comments
 (0)