-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (42 loc) · 1.4 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
[project]
name = "nuTens"
description="Library to calculate neutrino oscillation probabilities using tensors"
readme = "README.md"
authors = [
{ name = "Ewan Miller", email = "emiller@ifae.es" },
]
requires-python = ">=3.9"
license = {file="LICENSE"}
keywords = ["neutrino", "oscillations", "physics", "particle", "tensor", "experiment", "autograd", "differentiable programming"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: GPU",
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Physics",
"Intended Audience :: Science/Research"
]
dependencies = [
"torch"
]
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/ewanwm/nuTens"
Issues = "https://github.com/ewanwm/nuTens/issues"
Documentation = "https://ewanwm.github.io/nuTens/"
[build-system]
requires = ["scikit-build-core>=0.3.3", "pybind11", "torch"]
build-backend = "scikit_build_core.build"
[tool.cibuildwheel]
build-frontend = "build[uv]"
[tool.scikit-build.cmake]
args = ["-DNT_ENABLE_PYTHON=ON"]
[tool.scikit-build.metadata.version]
provider = "scikit_build_core.metadata.setuptools_scm"
[tool.scikit-build.sdist]
include = ["src/package/_version.py"]
[tool.setuptools_scm] # Section required
write_to = "_version.py"