-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 1.04 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "validation"
version = "0.1.0"
description = "A collection of validation scripts for OpenMC"
authors = [
{name = "The OpenMC Development Team", email = "openmc-dev@googlegroups.com"}
]
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"numpy",
"matplotlib",
"h5py",
"pandas",
]
[project.urls]
Homepage = "https://github.com/openmc-dev/validation"
Repository = "https://github.com/openmc-dev/validation"
[project.scripts]
openmc-validate-neutron-physics = "validation.neutron_physics:main"
openmc-validate-photon-physics = "validation.photon_physics:main"
openmc-validate-photon-production = "validation.photon_production:main"
openmc-run-benchmarks = "benchmarking.benchmark:main"
openmc-plot-benchmarks = "benchmarking.plot:main"
openmc-report-benchmarks = "benchmarking.report:main"
[tool.setuptools.packages.find]
include = ["validation", "benchmarking"]
[tool.setuptools.package-data]
benchmarking = ["uncertainties.csv"]