-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
71 lines (62 loc) · 1.77 KB
/
pyproject.toml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[project]
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Testing',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Programming Language :: Python :: 3',
]
keywords = ["reactive", "automata", "monitoring", "testing", "runtime"]
name = "reelay"
readme = "README.md"
requires-python = ">=3.8"
license = { "file" = "LICENSE" }
authors = [{ "name" = "Dogan Ulus", "email" = "[email protected]" }]
urls = { "Documentation" = "https://doganulus.github.io/reelay" }
dependencies = []
dynamic = ["version", "description"]
[project.scripts]
add = "pybind11_project.add:main"
[build-system]
requires = ["py-build-cmake~=0.1.8", "pybind11"]
build-backend = "py_build_cmake.build"
[tool.py-build-cmake.module]
name = "reelay"
directory = "python"
[tool.py-build-cmake.sdist]
include = [
"README.md",
"CMakeLists.txt",
"include/*",
"src/*",
"python/*",
"LICENSE",
]
exclude = []
[tool.py-build-cmake.cmake]
minimum_version = "3.22"
build_type = "Release"
source_path = "."
build_path = "/tmp/reelay/build"
args = ["-Wdev"]
build_args = ["-j"]
build_tool_args = []
install_args = ["--verbose"]
install_components = ["python_modules"]
env = {}
[tool.py-build-cmake.cmake.options]
"BUILD_TESTS:BOOL" = "OFF"
"BUILD_REELAY_APPS:BOOL" = "OFF"
"BUILD_PYTHON_BINDINGS:BOOL" = "ON"
[tool.py-build-cmake.linux.cmake] # Linux-specific options
generator = "Ninja Multi-Config"
config = ["Debug", "Release"]
options = { "CMAKE_DEBUG_POSTFIX" = "_d" }
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-ra -q"
testpaths = ["python/tests"]
cache_dir = "/tmp/reelay/.pytest_cache"