-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
86 lines (80 loc) · 2.01 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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[build-system]
requires = [
"setuptools >= 65",
"setuptools_scm[toml] >= 7",
"wheel >= 0.29.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "xbout"
description = "Collect data from BOUT++ runs in python using xarray"
readme = "README.md"
authors = [
{name = "Thomas Nicholas", email = "[email protected]"},
{name = "John Omotani"},
]
license = {file = "LICENSE"}
dynamic = ["version"]
keywords = ["gyrokinetics", "analysis", "plasma", "research"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Visualization",
]
requires-python = ">=3.8"
dependencies = [
"xarray>=2023.01.0",
"boutdata>=0.1.4",
"dask[array]>=2.10.0",
"gelidum>=0.5.3",
"natsort>=5.5.0",
"matplotlib>=3.1.1,!=3.3.0,!=3.3.1,!=3.3.2",
"animatplot-ng>=0.4.2",
"netcdf4>=1.4.0",
"Pillow>=6.1.0",
]
[project.optional-dependencies]
calc = [
"numpy >= 1.18.0",
"scipy >= 1.3.0",
"dask >= 2.2.0",
"statsmodels >= 0.10.1",
"xrft",
"xhistogram",
]
cherab = [
"cherab",
]
docs = [
"sphinx >= 5.3",
"sphinx-book-theme >= 0.4.0rc1",
"sphinx_autodoc_typehints >= 1.19",
]
3d_plot = [
"k3d >= 2.8.0",
"mayavi >= 4.7.2",
"wand",
]
tests = [
"pytest >= 3.3.0",
"pytest-cov",
]
[project.urls]
Source = "https://github.com/boutproject/xBOUT"
Tracker = "https://github.com/boutproject/xBOUT/issues"
Documentation = "https://xbout.readthedocs.io/en/latest/"
[tool.setuptools_scm]
write_to = "xbout/_version.py"
[tool.setuptools]
packages = ["xbout"]
[tool.ruff.lint]
ignore = ["E501"]