-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
52 lines (46 loc) · 1.2 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "NeSST"
version = "1.1.3"
description = "Neutron Scattered Spectra Tool, ICF primary and scattered neutron spectroscopy analysis code"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research"
]
authors = [
{ name="Aidan Crilly <ac116@ic.ac.uk>" },
]
requires-python = ">=3.0"
keywords = ["python", "reactor", "fusion", "power", "sankey"]
dependencies = [
"numpy",
"scipy",
"matplotlib",
"endf"
]
[project.urls]
"Homepage" = "https://github.com/aidancrilly/NeSST"
"Bug Tracker" = "https://github.com/aidancrilly/NeSST/issues"
[project.optional-dependencies]
test = [
"pre-commit", "pytest", "pytest_cases", "jupyter", "matplotlib"
]
docs = [
"sphinx>=7.0",
"sphinx-rtd-theme>=2.0",
"myst-parser>=2.0",
"nbsphinx>=0.9",
]
dress = [
"pydress"
]
[tool.setuptools.package-data]
"NeSST.data" = ["*.dat", "*.txt","*.csv","*.json"]
"NeSST.data.ENDF" = ["*.endf", "*.cendl","*.brond"]
[tool.setuptools]
package-dir = {"" = "src"}