dagua 0.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
dagua-0.0.1/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 John Mark Taylor
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
dagua-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,54 @@
1
+ Metadata-Version: 2.4
2
+ Name: dagua
3
+ Version: 0.0.1
4
+ Summary: GPU-accelerated differentiable graph layout engine built on PyTorch
5
+ Author: John Mark Taylor
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/johnmarktaylor91/dagua
8
+ Project-URL: Repository, https://github.com/johnmarktaylor91/dagua
9
+ Project-URL: Issues, https://github.com/johnmarktaylor91/dagua/issues
10
+ Keywords: graph,layout,visualization,pytorch,dag,graphviz,hierarchical
11
+ Classifier: Development Status :: 2 - Pre-Alpha
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Intended Audience :: Science/Research
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Topic :: Scientific/Engineering :: Visualization
20
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
21
+ Requires-Python: >=3.9
22
+ Description-Content-Type: text/markdown
23
+ License-File: LICENSE
24
+ Requires-Dist: torch>=1.9
25
+ Provides-Extra: render
26
+ Requires-Dist: matplotlib>=3.5; extra == "render"
27
+ Provides-Extra: graphviz
28
+ Requires-Dist: graphviz>=0.20; extra == "graphviz"
29
+ Provides-Extra: dev
30
+ Requires-Dist: matplotlib>=3.5; extra == "dev"
31
+ Requires-Dist: pytest>=7.0; extra == "dev"
32
+ Requires-Dist: ruff>=0.4; extra == "dev"
33
+ Provides-Extra: test
34
+ Requires-Dist: pytest>=7.0; extra == "test"
35
+ Requires-Dist: matplotlib>=3.5; extra == "test"
36
+ Dynamic: license-file
37
+
38
+ # dagua
39
+
40
+ GPU-accelerated differentiable graph layout engine built on PyTorch.
41
+
42
+ **DAG + agua.** Directed acyclic graphs + water. Named after the Dagua River in Colombia — a river flows downhill (like a DAG), never cycles back (acyclic), and finds its own path through the landscape (like gradient descent finding optimal node positions).
43
+
44
+ ## Why?
45
+
46
+ Graphviz has dominated graph visualization for 30 years but has hard scaling limits. No existing Python package provides pip-installable, hierarchical (Sugiyama-style) graph layout. Dagua fills this gap: `pip install dagua`, pure Python + PyTorch, GPU-accelerated, hierarchical layout with composable constraints.
47
+
48
+ ## Status
49
+
50
+ Pre-alpha. Under active development.
51
+
52
+ ## License
53
+
54
+ MIT
dagua-0.0.1/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # dagua
2
+
3
+ GPU-accelerated differentiable graph layout engine built on PyTorch.
4
+
5
+ **DAG + agua.** Directed acyclic graphs + water. Named after the Dagua River in Colombia — a river flows downhill (like a DAG), never cycles back (acyclic), and finds its own path through the landscape (like gradient descent finding optimal node positions).
6
+
7
+ ## Why?
8
+
9
+ Graphviz has dominated graph visualization for 30 years but has hard scaling limits. No existing Python package provides pip-installable, hierarchical (Sugiyama-style) graph layout. Dagua fills this gap: `pip install dagua`, pure Python + PyTorch, GPU-accelerated, hierarchical layout with composable constraints.
10
+
11
+ ## Status
12
+
13
+ Pre-alpha. Under active development.
14
+
15
+ ## License
16
+
17
+ MIT
@@ -0,0 +1,3 @@
1
+ """Dagua: GPU-accelerated differentiable graph layout engine built on PyTorch."""
2
+
3
+ __version__ = "0.0.1"
File without changes
@@ -0,0 +1,54 @@
1
+ Metadata-Version: 2.4
2
+ Name: dagua
3
+ Version: 0.0.1
4
+ Summary: GPU-accelerated differentiable graph layout engine built on PyTorch
5
+ Author: John Mark Taylor
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/johnmarktaylor91/dagua
8
+ Project-URL: Repository, https://github.com/johnmarktaylor91/dagua
9
+ Project-URL: Issues, https://github.com/johnmarktaylor91/dagua/issues
10
+ Keywords: graph,layout,visualization,pytorch,dag,graphviz,hierarchical
11
+ Classifier: Development Status :: 2 - Pre-Alpha
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Intended Audience :: Science/Research
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Topic :: Scientific/Engineering :: Visualization
20
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
21
+ Requires-Python: >=3.9
22
+ Description-Content-Type: text/markdown
23
+ License-File: LICENSE
24
+ Requires-Dist: torch>=1.9
25
+ Provides-Extra: render
26
+ Requires-Dist: matplotlib>=3.5; extra == "render"
27
+ Provides-Extra: graphviz
28
+ Requires-Dist: graphviz>=0.20; extra == "graphviz"
29
+ Provides-Extra: dev
30
+ Requires-Dist: matplotlib>=3.5; extra == "dev"
31
+ Requires-Dist: pytest>=7.0; extra == "dev"
32
+ Requires-Dist: ruff>=0.4; extra == "dev"
33
+ Provides-Extra: test
34
+ Requires-Dist: pytest>=7.0; extra == "test"
35
+ Requires-Dist: matplotlib>=3.5; extra == "test"
36
+ Dynamic: license-file
37
+
38
+ # dagua
39
+
40
+ GPU-accelerated differentiable graph layout engine built on PyTorch.
41
+
42
+ **DAG + agua.** Directed acyclic graphs + water. Named after the Dagua River in Colombia — a river flows downhill (like a DAG), never cycles back (acyclic), and finds its own path through the landscape (like gradient descent finding optimal node positions).
43
+
44
+ ## Why?
45
+
46
+ Graphviz has dominated graph visualization for 30 years but has hard scaling limits. No existing Python package provides pip-installable, hierarchical (Sugiyama-style) graph layout. Dagua fills this gap: `pip install dagua`, pure Python + PyTorch, GPU-accelerated, hierarchical layout with composable constraints.
47
+
48
+ ## Status
49
+
50
+ Pre-alpha. Under active development.
51
+
52
+ ## License
53
+
54
+ MIT
@@ -0,0 +1,10 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ dagua/__init__.py
5
+ dagua.egg-info/PKG-INFO
6
+ dagua.egg-info/SOURCES.txt
7
+ dagua.egg-info/dependency_links.txt
8
+ dagua.egg-info/requires.txt
9
+ dagua.egg-info/top_level.txt
10
+ dagua/render/__init__.py
@@ -0,0 +1,16 @@
1
+ torch>=1.9
2
+
3
+ [dev]
4
+ matplotlib>=3.5
5
+ pytest>=7.0
6
+ ruff>=0.4
7
+
8
+ [graphviz]
9
+ graphviz>=0.20
10
+
11
+ [render]
12
+ matplotlib>=3.5
13
+
14
+ [test]
15
+ pytest>=7.0
16
+ matplotlib>=3.5
@@ -0,0 +1 @@
1
+ dagua
@@ -0,0 +1,66 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "dagua"
7
+ version = "0.0.1"
8
+ description = "GPU-accelerated differentiable graph layout engine built on PyTorch"
9
+ readme = "README.md"
10
+ license = "MIT"
11
+ requires-python = ">=3.9"
12
+ authors = [
13
+ {name = "John Mark Taylor"},
14
+ ]
15
+ keywords = ["graph", "layout", "visualization", "pytorch", "dag", "graphviz", "hierarchical"]
16
+ classifiers = [
17
+ "Development Status :: 2 - Pre-Alpha",
18
+ "Intended Audience :: Developers",
19
+ "Intended Audience :: Science/Research",
20
+ "Programming Language :: Python :: 3",
21
+ "Programming Language :: Python :: 3.9",
22
+ "Programming Language :: Python :: 3.10",
23
+ "Programming Language :: Python :: 3.11",
24
+ "Programming Language :: Python :: 3.12",
25
+ "Topic :: Scientific/Engineering :: Visualization",
26
+ "Topic :: Software Development :: Libraries :: Python Modules",
27
+ ]
28
+ dependencies = [
29
+ "torch>=1.9",
30
+ ]
31
+
32
+ [project.optional-dependencies]
33
+ render = ["matplotlib>=3.5"]
34
+ graphviz = ["graphviz>=0.20"]
35
+ dev = [
36
+ "matplotlib>=3.5",
37
+ "pytest>=7.0",
38
+ "ruff>=0.4",
39
+ ]
40
+ test = [
41
+ "pytest>=7.0",
42
+ "matplotlib>=3.5",
43
+ ]
44
+
45
+ [project.urls]
46
+ Homepage = "https://github.com/johnmarktaylor91/dagua"
47
+ Repository = "https://github.com/johnmarktaylor91/dagua"
48
+ Issues = "https://github.com/johnmarktaylor91/dagua/issues"
49
+
50
+ [tool.setuptools.packages.find]
51
+ include = ["dagua*"]
52
+
53
+ [tool.ruff]
54
+ line-length = 100
55
+ target-version = "py39"
56
+
57
+ [tool.ruff.lint]
58
+ select = ["E", "F", "W", "I"]
59
+
60
+ [tool.pytest.ini_options]
61
+ testpaths = ["tests"]
62
+ markers = [
63
+ "smoke: quick sanity checks",
64
+ "slow: tests that take >10s",
65
+ "gpu: tests requiring CUDA",
66
+ ]
dagua-0.0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+