aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/pyproject.toml
blob: f1052b40b5d4c97823838f3380c6bb79c1a7875f (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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "cmake_common"
description = "Utilities to help develop C++/CMake projects"
license = {text = "MIT"}
version = "3.4.1"
authors = [{name = "Egor Tensin", email = "Egor.Tensin@gmail.com"}]
readme = "README.md"
requires-python = ">=3.6"

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"
ci-boost = "project.ci.boost:main"
ci-cmake = "project.ci.cmake:main"
cmake-build = "project.cmake.build:main"

[tool.setuptools]
script-files = [
    "tools/ctest-driver.py",
    "tools/project-clang-format.py",
]

[tool.setuptools.data-files]
"share/cmake" = ["common.cmake"]