-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 1.05 KB
/
Copy pathpyproject.toml
File metadata and controls
45 lines (41 loc) · 1.05 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
[project]
name = "control_diffusion"
version = "0.1.0"
description = "A Python package containing agents that can rank nodes in a network for the purpose of controlling diffusion processes."
readme = "README.md"
authors = [
{name = "Andrei C. Rusu (andrei-rusu)"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries",
]
requires-python = ">=3.9"
dependencies = [
"matplotlib",
"networkx",
"numpy",
"tqdm",
]
license = {text = "MIT"}
[project.urls]
Homepage = "https://github.com/andrei-rusu/control-diffusion"
"Bug Tracker" = "https://github.com/andrei-rusu/control-diffusion/issues"
[project.optional-dependencies]
learn = [
"pandas",
"scikit-learn",
"torch",
"torch_geometric",
]
learn_extras = [
"torch_scatter",
"torch_sparse",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"