-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (64 loc) · 1.78 KB
/
pyproject.toml
File metadata and controls
75 lines (64 loc) · 1.78 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
[build-system]
requires = ["setuptools >= 75.8.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["gridfm_graphkit*"]
namespaces = false
[project]
name = "gridfm-graphkit"
description = "Grid Foundation Model"
version = "0.0.6"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10,<3.13"
authors = [
{name = "Matteo Mazzonelli", email = "matteo.mazzonelli1@ibm.com"},
{name = "Alban Puech", email = "apuech@seas.harvard.edu"},
{name = "Tamara Govindasamy", email= "tamara.govindasamy@ibm.com"},
{name = "Mangaliso Mngomezulu", email= "mngomezulum@ibm.com"},
{name = "Etienne Vos", email= "etienne.vos@ibm.com"},
{name = "Celia Cintas", email= "celia.cintas@ibm.com"},
{name = "Jonas Weiss", email= "jwe@zurich.ibm.com"},
]
maintainers = [
{name = "Matteo Mazzonelli", email = "matteo.mazzonelli1@ibm.com"},
]
keywords = ["electric power grid", "foundational model", "graph neural networks"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
dependencies = [
"mlflow>=3.1.0",
"nbformat>=5.10.4",
"networkx>=3.4.2",
"numpy>=2.2.6",
"pandas>=2.3.0",
"plotly>=6.1.2",
"pyyaml>=6.0.2",
"torch>=2.7.1,<2.9",
"torch-geometric>=2.6.1",
"torchaudio>=2.7.1",
"torchvision>=0.22.1",
"lightning",
"seaborn",
"urllib3>=2.6.0",
"gridfm-datakit>=1.0.2",
]
[project.optional-dependencies]
dev = [
"mkdocs-material",
"mkdocstrings[python]",
"pre-commit",
"bandit",
"build"
]
test = [
"pytest",
"pytest-cov"
]
[project.scripts]
gridfm_graphkit = "gridfm_graphkit.__main__:main"