-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (66 loc) · 1.95 KB
/
pyproject.toml
File metadata and controls
73 lines (66 loc) · 1.95 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "python-magnetworkflows"
version = "0.1.0"
description = "Python Magnet Workflows"
readme = "README.md"
license = {text = "MIT"}
keywords = ["python_magnetworkflows"]
authors = [
{name = "Christophe Trophime", email = "christophe.trophime@lncmi.cnrs.fr"},
{name = "Romain Vallet", email = "romain.vallet@lncmi.cnrs.fr"},
{name = "Jeremie Muzet", email = "jeremie.muzet@lncmi.cnrs.fr"},
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.11"
dependencies = [
"numpy>=1.24.0,<2.0",
"scipy>=1.11.0",
"tabulate>=0.9.0",
"nlopt>=2.7.0",
"python-decouple>=3.6",
"requests>=2.27.1",
"natsort>=7.1.1",
"pandas>=2.2.1",
"iapws>=1.4.0",
"statsmodels>=0.13.0",
"matplotlib>=3.5.1",
"seaborn>=0.11.2",
"Pint>=0.17.1",
# feelpp packages installed as system Debian packages
# "feelpp>=0.102.1",
# "feelpp-toolboxes>=0.102.1",
# "feelpp-toolboxes-core>=0.102.1",
# "feelpp-toolboxes-coefficientformpdes>=0.102.1",
"visidata>=2.6.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.2.0",
]
[project.urls]
Homepage = "https://github.com/MagnetDB/python_magnetworkflows"
Repository = "https://github.com/MagnetDB/python_magnetworkflows"
[project.scripts]
python_magnetworkflows = "python_magnetworkflows.cli:main"
[tool.setuptools]
packages = ["python_magnetworkflows"]
[tool.setuptools.package-data]
python_magnetworkflows = ["**"]
[tool.pytest.ini_options]
testpaths = ["tests"]
filterwarnings = [
"error",
"ignore::UserWarning",
"ignore:function ham\\(\\) is deprecated:DeprecationWarning",
]