2022-11-20 13:49:43 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["maturin>=0.14,<0.15"]
|
|
|
|
build-backend = "maturin"
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "graph_force"
|
2022-11-22 21:25:49 +00:00
|
|
|
description = "A library for embedding graphs in 2D space, using force-directed layouts."
|
|
|
|
keywords = ["graph", "layout", "force-directed"]
|
|
|
|
authors = [ { email = "niko@rerere.org", name = "Niko Abeler" } ]
|
|
|
|
maintainers = [ { email = "niko@rerere.org", name = "Niko Abeler" } ]
|
|
|
|
readme = "README.md"
|
2022-11-20 13:49:43 +00:00
|
|
|
requires-python = ">=3.7"
|
|
|
|
classifiers = [
|
|
|
|
"Programming Language :: Rust",
|
|
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
|
|
"Programming Language :: Python :: Implementation :: PyPy",
|
2022-11-22 21:25:49 +00:00
|
|
|
"Topic :: Scientific/Engineering :: Visualization",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
2022-11-20 13:49:43 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
2022-11-22 21:25:49 +00:00
|
|
|
[project.urls]
|
|
|
|
homepage = "https://git.libove.org/h4kor/graph-force"
|
|
|
|
repository = "https://git.libove.org/h4kor/graph-force"
|