-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (44 loc) · 1.28 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (44 loc) · 1.28 KB
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
[build-system]
requires = ["scikit-build-core>=1,<2"]
build-backend = "scikit_build_core.build"
[project]
name = "shared-memory-store"
version = "1.0.0"
description = "Bounded, cross-process shared-memory values for Python"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [{ name = "SharedMemoryStore contributors" }]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries",
]
[project.urls]
Repository = "https://github.com/rantri/SharedMemoryStore"
[tool.scikit-build]
minimum-version = "build-system.requires"
wheel.packages = []
wheel.py-api = "py3"
install.components = ["Python"]
sdist.inclusion-mode = "explicit"
sdist.include = [
"/pyproject.toml",
"/CMakeLists.txt",
"/cmake/**",
"/src/cpp/**",
"/src/python/shared_memory_store/*.py",
"/protocol/compatibility.json",
"/LICENSE",
"/README.md",
]
[tool.scikit-build.cmake.define]
SMS_INSTALL = "ON"
SMS_BUILD_TESTS = "OFF"
SMS_BUILD_SAMPLES = "OFF"
SMS_PYTHON_INSTALL_DIR = "shared_memory_store"