-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 862 Bytes
/
pyproject.toml
File metadata and controls
30 lines (26 loc) · 862 Bytes
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
[build-system]
requires = ["scikit-build-core>=0.7.0", "pybind11", "pyparsing"]
build-backend = "scikit_build_core.build"
[project]
name = "mollerdb"
version = "0.1.0"
authors = [{ name = "MOLLER Collaboration", email = "wdconinc@jlab.org" }]
description = "A C++/Python SDK for the MOLLER database"
readme = "README.md"
requires-python = ">=3.7"
license = { text = "MIT" }
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: C++",
]
[project.optional-dependencies]
test = ["pytest"]
dev = ["pytest", "wheel"]
[tool.scikit-build]
# Tell scikit-build where the CMake project is located
cmake.source-dir = "."
# Specify what to include in the wheel.
# The python package directory is now 'mollerdb'.
wheel.packages = ["python/mollerdb"]