blob: 80f5b5b45cffbf02dd825caf5c9d734cfc29257b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "cmake_common"
description = "Utilities to help develop C++/CMake projects"
license = {text = "MIT"}
dynamic = ["version"]
authors = [{name = "Egor Tensin", email = "Egor.Tensin@gmail.com"}]
readme = "README.md"
requires-python = ">=3.6"
dependencies = [
'importlib-metadata ~= 4.0 ; python_version < "3.8"',
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: C++",
"Topic :: Software Development :: Build Tools",
]
[project.urls]
"Homepage" = "https://github.com/egor-tensin/cmake-common"
"Bug Tracker" = "https://github.com/egor-tensin/cmake-common/issues"
[project.scripts]
boost-build = "project.boost.build:_main"
boost-download = "project.boost.download:_main"
project-build = "project.build:main"
[tool.setuptools]
script-files = [
"tools/ctest-driver.py",
"tools/project-clang-format.py",
]
[tool.setuptools.data-files]
"share/cmake" = ["common.cmake"]
[tool.setuptools_scm]
|