-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (54 loc) · 1.15 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
56
57
58
59
60
[tool.poetry]
authors = ["Timothy Shields <Timothy.Shields@twosigma.com>"]
description = "Render NetworkX graphs using GraphViz"
documentation = "https://nxv.readthedocs.io/"
homepage = "https://github.com/twosigma/nxv"
include = [
"LICENSE",
]
keywords = [
"networkx",
"graphviz",
"graph",
"tree",
"network",
"draw",
"render",
"visualize",
"visualization",
]
license = "Apache-2.0"
name = "nxv"
packages = [
{include = "nxv", from = "src"},
]
readme = "README.md"
repository = "https://github.com/twosigma/nxvz"
version = "0.1.3"
[tool.poetry.dependencies]
networkx = "^2.5"
python = "^3.6"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
coverage = {extras = ["toml"], version = "^5.3"}
flake8 = "^3.8.3"
flake8-black = "^0.2.1"
flake8-bugbear = "^20.1.4"
isort = "^5.5.2"
pytest = "^5.2"
pytest-cov = "^2.10.1"
releases = "^1.6.3"
sphinx = "^3.2.1"
sphinx-autodoc-typehints = "^1.11.0"
sphinx_rtd_theme = "^0.5.0"
codecov = "^2.1.9"
[tool.coverage.paths]
source = ["src"]
[tool.coverage.run]
branch = true
source = ["nxv"]
[tool.coverage.report]
show_missing = true
[build-system]
build-backend = "poetry.masonry.api"
requires = ["poetry>=0.12"]