forked from tfius/grm-tcm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (42 loc) · 1003 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (42 loc) · 1003 Bytes
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
[project]
name = "grm-tcm"
version = "0.1.0"
description = "Synthetic GRM-TCM benchmark generator and trainer."
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE", "LICENSE-DATA", "NOTICE"]
authors = [
{name = "Tadej Fius", email = "tadej.fius@gmail.com"},
{name = "Tims Pecerskis"},
]
keywords = [
"synthetic-benchmark",
"spectral-graph",
"latent-state-recovery",
"calibration",
"ontology-mismatch",
]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Development Status :: 3 - Alpha",
]
requires-python = ">=3.10"
dependencies = [
"joblib>=1.4",
"matplotlib>=3.10.9",
"numpy>=2.0",
"pandas>=2.2",
"pyarrow>=17.0",
"scikit-learn>=1.5",
"scipy>=1.14",
]
[tool.uv]
package = false
[dependency-groups]
dev = [
"pytest>=8",
]