-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
78 lines (71 loc) · 1.69 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "nnviz"
authors = [
{ name="LucaBonfiglioli", email="[email protected]" },
]
description = "Neural models visualization."
readme = "README.md"
license = { text="GNU General Public License v3 (GPLv3)" }
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
]
keywords = [
"nnviz", "neural", "deeplearning", "visualization", "graph"
]
dependencies = [
"typer>=0.6.0",
"numpy",
"pygraphviz>=1.9",
"torch>=1.12",
"torchvision>=0.13",
"networkx>=2.8",
"pydantic>=1.10",
]
dynamic = [ "version" ]
[project.optional-dependencies]
tests = [
"pytest",
"pytest-cov",
]
dev = [
"black",
"flake8",
"ruff",
]
build = [
"hatch",
"build",
]
docs = [
"Sphinx==6.1.3",
"sphinx-immaterial==0.11.3",
"myst-parser==1.0.0",
"sphinxcontrib-mermaid==0.8.1",
]
[project.urls]
"Source" = "https://github.com/lucabonfiglioli/nnviz"
"Issues" = "https://github.com/lucabonfiglioli/nnviz/issues"
[project.scripts]
nnviz = "nnviz.cli.main:app"
[tool.hatch.version]
path = "nnviz/__init__.py"
[tool.hatch.build]
include = [
"nnviz/**/*.py",
"LICENSE",
]
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401"] # ignore unused imports in __init__.py files.