-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
104 lines (92 loc) · 2.3 KB
/
Copy pathpyproject.toml
File metadata and controls
104 lines (92 loc) · 2.3 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "koopman-graph"
dynamic = ["version"]
description = "Graph Neural Networks with Koopman operator theory for spatiotemporal graph dynamics"
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE"]
requires-python = ">=3.10"
authors = [
{ name = "Travis Kessler", email = "travis.j.kessler@gmail.com" },
]
keywords = [
"koopman",
"graph-neural-networks",
"pytorch-geometric",
"spatiotemporal",
"topological",
"dynamics",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"torch>=2.8.0",
"torch-geometric>=2.6.1",
]
[project.optional-dependencies]
dev = [
"build>=1.2.0",
"pytest>=8.4.0",
"pytest-cov>=6.0.0",
"pytest-xdist>=3.6.0",
"ruff>=0.15.0",
"pre-commit>=4.0.0",
"nbmake>=0.5.0",
"matplotlib>=3.8.0",
"scipy>=1.11.0",
"ipykernel>=6.29.0",
"pandas>=2.0.0",
"gymnasium>=1.0.0",
]
docs = [
"sphinx>=8.0.0",
"furo>=2024.8.6",
"sphinx-copybutton>=0.5.2",
]
rl = [
"gymnasium>=1.0.0",
"stable-baselines3>=2.3.0",
]
[project.urls]
Homepage = "https://github.com/tjkessler/KoopmanGraph"
Documentation = "https://koopmangraph.readthedocs.io/"
Repository = "https://github.com/tjkessler/KoopmanGraph"
Issues = "https://github.com/tjkessler/KoopmanGraph/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = { attr = "koopman_graph.__version__" }
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v"
filterwarnings = [
"ignore::tqdm.std.TqdmWarning",
]
[tool.coverage.run]
source = ["koopman_graph"]
branch = true
[tool.coverage.report]
fail_under = 90
show_missing = true
skip_covered = false
[tool.ruff]
target-version = "py310"
line-length = 88
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"