-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
24 lines (21 loc) · 843 Bytes
/
pyproject.toml
File metadata and controls
24 lines (21 loc) · 843 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
[build-system]
requires = ["maturin>=0.14,<0.15"]
build-backend = "maturin"
[project]
name = "graph_force"
description = "A library for embedding graphs in 2D space, using force-directed layouts."
keywords = ["graph", "layout", "force-directed"]
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Scientific/Engineering :: Visualization",
"License :: OSI Approved :: MIT License",
]
[project.urls]
homepage = "https://github.com/H4kor/graph-force/"
repository = "https://github.com/H4kor/graph-force/"