-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (63 loc) · 2.18 KB
/
Copy pathpyproject.toml
File metadata and controls
69 lines (63 loc) · 2.18 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["setuptools", "versioningit", "wheel", "numpy>=1.15"]
build-backend = "setuptools.build_meta"
[project]
name = "fudge"
dynamic = ["version", "dependencies"]
authors = [
{name = "Nuclear Data and Theory Group, LLNL", email = "mattoon1@llnl.gov"},
]
description = "FUDGE (For Updating Data and Generating Evaluations) is a Python library for managing, processing and visualizing nuclear data."
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE"}
[tool.versioningit.tag2version]
regex = "^(?P<prefix>fudge)(?P<version>[vV]?\\d+(?:\\.\\d+){0,2}[^\\+]*)?$"
[tool.versioningit.write]
file = "fudge/fudgeVersion.py"
[tool.setuptools]
packages = [
"fudge",
"fudge.gnds",
"fudge.core",
"fudge.core.math",
"fudge.core.math.test",
"fudge.core.utilities",
"fudge",
"fudge.outputChannelData",
"fudge.outputChannelData.fissionFragmentData",
"fudge.covariances",
"fudge.covariances.test",
"fudge.productData",
"fudge.productData.distributions",
"fudge.productData.distributions.test",
"fudge.reactionData",
"fudge.reactionData.test",
"fudge.reactionData.doubleDifferentialCrossSection",
"fudge.reactionData.doubleDifferentialCrossSection.chargedParticleElastic",
"fudge.reactionData.doubleDifferentialCrossSection.photonScattering",
"fudge.reactionData.doubleDifferentialCrossSection.thermalNeutronScatteringLaw",
"fudge.reactions",
"fudge.resonances",
"fudge.processing",
"fudge.processing.deterministic",
"fudge.processing.montecarlo",
"fudge.processing.resonances",
"fudge.processing.resonances.test",
"fudge.vis",
"fudge.vis.gnuplot",
"fudge.vis.matplotlib",
"LUPY",
"isotopicAbundances",
"isotopicAbundances.bin"
]
package-dir = {"" = "."}
[tool.setuptools.package-data]
"fudge.legacy.endl.test" = ["testdb/ascii/yi01/za001001/y*", "testdb/ascii/yi01/za001001/*.txt", "testdb/ascii/yi01/za001001/*xml"]
"fudge.processing.resonances.test" = ["*.py"]
"fudge.legacy.endl" = ["bdfls"]
"fudge" = ["gnds.xsd"]
"fudge.covariances.test" = ["*.py"]
[project.urls]
"Homepage" = "http://nuclear.llnl.gov/fudge"
"Repository" = "https://github.com/LLNL/fudge"