-
Notifications
You must be signed in to change notification settings - Fork 30
/
pyproject.toml
84 lines (76 loc) · 2.11 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
[project]
name = "seml"
version = "0.5.4"
description = "Slurm Experiment Management Library"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
{ name = "Daniel Zügner", email = "zuegnerd@in.tum.de" },
{ name = "Johannes Gsteiger", email = "johannes.gasteiger@tum.de" },
{ name = "Nicholas Gao", email = "n.gao@tum.de" },
{ name = "Dominik Fuchsgruber", email = "d.fuchsgruber@tum.de" },
{ name = "DAML Group @ TUM" },
]
maintainers = [
{ name = "Nicholas Gao", email = "n.gao@tum.de" },
{ name = "Dominik Fuchsgruber", email = "d.fuchsgruber@tum.de" },
]
classifiers = ["Programming Language :: Python"]
dependencies = [
"numpy>=1.15; python_version < '3.13'",
"numpy>=2.1; python_version >= '3.13'",
"pymongo>=4.1",
"pandas>=2.2",
"sacred>=0.8.4",
"pyyaml>=5.1",
"jsonpickle>=2.2",
"munch>=4.0",
"debugpy>=1.2.1",
"requests>=2.28.1",
"typer>=0.12",
"rich>=13.0",
"omegaconf>=2.3.0",
"gitignore_parser>=0.1.11",
"setuptools>=69.2.0",
"importlib_resources>=5.7.0",
"typing_extensions>=4.10; python_version < '3.13'",
"typing_extensions>=4.12; python_version >= '3.13'",
"deepdiff>=7.0.1",
]
[project.optional-dependencies]
dev = [
"ruff>=0.6.1",
"pytest>=8.3.2",
"pre-commit>=3.8.0",
"filelock>=3.15.4",
"sshtunnel>=0.4.0",
]
ssh_forward = ["sshtunnel>=0.4.0", "filelock>=3.13.3"]
[project.urls]
Homepage = "https://github.com/TUM-DAML/seml"
Documentation = "https://github.com/TUM-DAML/seml/blob/master/docs.md"
Repository = "https://github.com/TUM-DAML/seml"
Changelog = "https://github.com/TUM-DAML/seml/releases/latest"
[project.scripts]
seml = "seml.__main__:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"ruff>=0.6.1",
"pytest>=8.3.2",
"pre-commit>=3.8.0",
"filelock>=3.15.4",
"sshtunnel>=0.4.0",
"build>=1.2.1",
"twine>=5.1.1",
"backports-tarfile>=1.2.0",
"tuna>=0.5.11",
]
[tool.ruff.format]
quote-style = "single"
line-ending = "lf"
[tool.pyright]
typeCheckingMode = "standard"