-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (74 loc) · 1.92 KB
/
Copy pathpyproject.toml
File metadata and controls
78 lines (74 loc) · 1.92 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "python_magnetrun"
version = "0.1.0"
description = "Python MagnetRun contains utils to view and analyse Magnet runs"
license = "MIT"
keywords = ["python_magnetrun"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
]
requires-python = ">=3.11"
authors = [
{name = "Christophe Trophime", email = "christophe.trophime@lncmi.cnrs.fr"}
]
readme = "README.md"
dependencies = [
"iapws>=1.3.4",
"lxml>=4.9.2",
"matplotlib>=3.3.4",
"seaborn>=0.11.1",
"numpy>=2.2.1",
"scipy>=1.14.1",
"pandas>=2.2.1",
"nptdms>=1.7.0",
"pint>=0.17",
"requests>=2.32.3",
"statsmodels>=0.12.2",
"tabulate>=0.9.0",
"natsort>=7.1.1",
"nlopt>=2.7.0",
"pytz>=2024.1",
]
[project.optional-dependencies]
system = [
"clawpack>=5.11.0",
"ht>=0.1.55",
]
signal = [
"pwlf>=2.4.0",
"scikit-learn>=1.7.2",
"stumpy>=1.13.0",
"sympy>=1.11.1",
"ruptures>=1.0.3",
"piecewise-regression>=1.5.0",
"pyts>=0.13.0",
"dtaidistance>=2.3.12",
"pyextremes>=2.3.3",
"visidata>=3.1.1",
"xmltodict>=0.12.0",
]
dev = [
"pytest>=6.2",
]
doc = [
"sphinx>=4.3.0",
"sphinx-rtd-theme>=1.0.0",
"sphinx-mermaid>=0.0.1",
"myst_parser>=0.15.0",
]
[project.urls]
Homepage = "https://github.com/MagnetDB/python_magnetrun"
[project.scripts]
python-magnetrun = "python_magnetrun.python_magnetrun:main"
srvdata-to-magnetrun = "python_magnetrun.requests.cli:main"
magnetrun-analysis = "python_magnetrun.analysis:main"
hybrid-magnetrun = "python_magnetrun.hybrid.cli:main"
magnetrun-alimconfig = "python_magnetrun.configAlims.convertxml:main"
magnetrun-pigbrother-logparser = "python_magnetrun.tdms.log_parser:main"