-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (54 loc) · 1.57 KB
/
pyproject.toml
File metadata and controls
60 lines (54 loc) · 1.57 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "rhmag"
version = "0.1.1"
authors = [
{ name="Hendrik Vater", email="hendrik.vater@uni-siegen.de"},
{ name="Oliver Schweins", email="oliverjs@mail.uni-paderborn.de"},
{ name="Lukas Hölsch", email="lukas.hoelsch@uni-siegen.de"},
{ name="Wilhelm Kirchgässner", email="W.Kirchgaessner@beckhoff.com"},
{ name="Till Piepenbrock", email="piepenbrock@lea.uni-paderborn.de"},
{ name="Oliver Wallscheid", email="oliver.wallscheid@uni-siegen.de"},
]
description = "Drafts for magnet-challenge-2"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"numpy>=2.2.4",
"matplotlib>=3.10.1",
"tqdm>=4.66.4",
"jax[cuda12]==0.5.3; sys_platform == 'linux'",
"jax==0.5.3; sys_platform == 'win32'",
"jaxlib==0.5.3",
"equinox==0.12.1",
"diffrax==0.7.0",
"optax==0.2.4",
"pandas>=2.2.3",
"ipython>=9.1.0",
"ipykernel>=6.29.5",
"pyarrow>=19.0.1",
"jupyter>=1.1.1",
"joblib>=1.5.0",
"scikit-learn>=1.7.0",
"concave-hull>=0.0.9",
"h5py>=3.14.0",
]
[project.urls]
Homepage = "https://github.com/minjiechen/magnetchallenge-2"
[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
include = ["*"] # package names should match these glob patterns (["*"] by default)
[tool.pytest.ini_options]
pythonpath = [
"."
]
[tool.ruff]
line-length = 120
[tool.black]
line-length = 120