forked from paulbrodersen/netgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (51 loc) · 1.4 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "netgraph"
dynamic = ["version"]
authors = [
{name = "Paul Brodersen", email = "paulbrodersen+netgraph@gmail.com"},
]
description = "Python drawing utilities for publication quality plots of networks."
readme = "README.md"
keywords = [
"matplotlib",
"network",
"visualisation",
]
license = {text = "GNU General Public License v3 (GPLv3)"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Visualization",
]
requires-python = ">3.6"
dependencies = [
"numpy",
"scipy",
"matplotlib >= 1.5",
"rectangle-packer",
"grandalf",
]
[project.urls]
Repository = "https://github.com/paulbrodersen/netgraph"
Documentation = "https://netgraph.readthedocs.io/en/latest/"
[project.optional-dependencies]
tests = [
"pytest",
"pytest-mpl",
]
docs = [
"sphinx",
"sphinx-rtd-theme",
"numpydoc",
"sphinx-gallery",
"Pillow",
"networkx",
]
[tool.setuptools.dynamic]
version = {attr = "netgraph.__version__"}