-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
119 lines (109 loc) · 2.79 KB
/
pyproject.toml
File metadata and controls
119 lines (109 loc) · 2.79 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=2.0"]
[dependency-groups]
dev = [
"black>=25.1.0",
"mdsthin>=1.5.0",
"pylint>=3.3.0",
"pytest>=8.3.0",
"ruff>=0.9.0",
"toml-sort>=0.24.0",
"yamllint>=1.36.0",
]
docs = [
"black>=25.1.0",
"mkdocs>=1.6.0",
"mkdocs-literate-nav>=0.6.0",
"mkdocs-material>=9.6.0",
"mkdocstrings[python]>=0.29.0",
]
lab = [
"ipykernel>=6.29.0",
"ipympl>=0.9.0",
"jupyterlab>=4.3.0",
"matplotlib>=3.10.0",
]
[project]
authors = [
{name = "Gregorio L. Trevisan", email = "gtrevisan@psfc.mit.edu"},
{name = "Cristina Rea", email = "crea@psfc.mit.edu"},
{name = "MIT PSFC Disruption Studies Group", email = "disruption-py@lists.psfc.mit.edu"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Version Control :: Git",
]
dependencies = [
"dynaconf>=3.2.0",
"fsspec[s3]>=2025.9.0",
"loguru>=0.7.0",
"netcdf4>=1.7.0",
"numpy>=1.26.0",
"pandas[parquet]>=2.2.0",
"pyodbc>=5.2.0",
"scipy>=1.15.0",
"SQLAlchemy>=2.0.0",
"tqdm>=4.67.0",
"xarray>=2025.1.0",
"zarr>=3.0.0",
]
description = "An open-source physics-based Scientific Framework for Disruption Analysis of Fusion Plasmas for AI/ML applications"
keywords = [
"plasma physics",
"nuclear fusion",
"tokamak",
"disruptions",
]
license = "MIT"
maintainers = [
{name = "Gregorio L. Trevisan", email = "gtrevisan@psfc.mit.edu"},
]
name = "disruption-py"
readme = "README.md"
requires-python = ">=3.11,<3.14"
version = "0.15.0.dev0"
[project.scripts]
disruption-py = "disruption_py.workflow:cli"
[project.urls]
documentation = "https://mit-psfc.github.io/disruption-py/"
homepage = "https://disruptions.mit.edu/"
repository = "https://github.com/MIT-PSFC/disruption-py/"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.lab]
optional = true
[tool.pylint]
disable = [
"fixme",
"too-few-public-methods",
"too-many-arguments",
"too-many-branches",
"too-many-instance-attributes",
"too-many-lines",
"too-many-locals",
"too-many-positional-arguments",
"too-many-statements",
]
extension-pkg-allow-list = ["pyodbc"]
ignored-modules = ["MDSplus"]
min-similarity-lines = 5
[tool.tomlsort]
ignore_case = true
in_place = true
sort_table_keys = true
trailing_comma_inline_array = true
overrides."*.physics.attributes.*.validity".inline_arrays = false
[tool.uv]
default-groups = []