forked from LIBRA-project/libra-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (24 loc) · 763 Bytes
/
pyproject.toml
File metadata and controls
28 lines (24 loc) · 763 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
[build-system]
requires = [
"setuptools >= 45",
"wheel",
"setuptools_scm[toml] >= 7.0.5"
]
build-backend = "setuptools.build_meta"
[project]
name = "libra-toolbox"
authors = [
{name = "Remi Delaporte-Mathurin", email = "remidm@mit.edu"},
]
description = "Design and analysis tools for LIBRA project"
license = {file = "LICENSE"}
requires-python = ">=3.10"
dynamic = ["version"]
dependencies = ["numpy", "pint", "scipy", "matplotlib", "sympy", "pandas", "h5py", "uproot", "h5py"]
[project.optional-dependencies]
neutronics = ["openmc-data-downloader"]
tests = ["pytest>=5.4.3", "pytest-cov", "nbconvert", "ipykernel", "requests"]
[tool.setuptools_scm]
write_to = "libra_toolbox/_version.py"
[tool.setuptools.package-data]
mvng_source = ["*.h5"]