-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (44 loc) · 1011 Bytes
/
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
44
45
46
47
48
[build-system]
requires = ["setuptools>=58"]
build-backend = "setuptools.build_meta"
[project]
name = "fusionrate"
version = "0.0.1"
description = "Fusion cross sections and rate coefficients"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
keywords = ["fusion", "cross section", "rate coefficient"]
authors = [
{name = "Jacob Schwartz", email = "[email protected]"}
]
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics"
]
dependencies = [
"cubature>=0.16.0",
"numpy>=1.23.5",
"scipy>=1.10.1",
"h5py>=3.8.0",
"platformdirs>=2.6.2",
]
[project.urls]
repository = "https://github.com/PlasmaControl/fusionrate"
[project.optional-dependencies]
tests = [
"pytest",
"jax[cpu]",
]
dev = [
"flake8",
]
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-ra"
testpaths = [
"tests",
]