-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
43 lines (37 loc) · 1.04 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "NeSST"
version = "1.1.1"
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 <[email protected]>" },
]
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 = [
"pytest", "jupyter", "matplotlib"
]
[tool.setuptools.package-data]
"NeSST.data" = ["*.dat", "*.txt","*.csv","*.json"]
"NeSST.data.ENDF" = ["*.endf", "*.cendl","*.brond"]
[tool.setuptools]
package-dir = {"" = "src"}