Compare commits
3 Commits
v0.1.0
..
ee28a225d1
| Author | SHA1 | Date | |
|---|---|---|---|
| ee28a225d1 | |||
| c3763f1768 | |||
| 14ad81ad00 |
+3
-4
@@ -1,7 +1,6 @@
|
||||
# The SPQR-Tree algorithm implementation.
|
||||
# Copyright 2026 imacat. All rights reserved.
|
||||
# Authors:
|
||||
# imacat@mail.imacat.idv.tw (imacat), 2026/3/1
|
||||
# The SQPR-Tree algorithm implementation.
|
||||
# Copyright 2026 DSP, inc. All rights reserved.
|
||||
# Author: imacat@mail.imacat.idv.tw (imacat), 2026/3/1
|
||||
|
||||
*.pyc
|
||||
__pycache__
|
||||
|
||||
+1
-1
@@ -17,6 +17,6 @@
|
||||
# limitations under the License.
|
||||
|
||||
recursive-include docs *
|
||||
prune docs/build
|
||||
recursive-exclude docs/build *
|
||||
recursive-include tests *
|
||||
recursive-exclude tests *.pyc
|
||||
|
||||
+1
-8
@@ -3,7 +3,7 @@
|
||||
# imacat@mail.imacat.idv.tw (imacat), 2026/3/2
|
||||
# AI assistance: Claude Code (Anthropic)
|
||||
|
||||
# Copyright (c) 2026 imacat.
|
||||
# Copyright (c) 2022-2026 imacat.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
@@ -53,13 +53,6 @@ classifiers = [
|
||||
"Typing :: Typed",
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
Homepage = "https://github.com/imacat/spqrtree"
|
||||
Repository = "https://github.com/imacat/spqrtree"
|
||||
Documentation = "https://spqrtree.readthedocs.io"
|
||||
"Change Log" = "https://spqrtree.readthedocs.io/en/latest/changelog.html"
|
||||
"Bug Tracker" = "https://github.com/imacat/spqrtree/issues"
|
||||
|
||||
[build-system]
|
||||
requires = ["setuptools>=61"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
@@ -25,9 +25,9 @@ Di Battista & Tamassia (1996).
|
||||
|
||||
Public API::
|
||||
|
||||
from spqrtree import Edge, MultiGraph
|
||||
from spqrtree import NodeType, SPQRNode, build_spqr_tree
|
||||
from spqrtree import (
|
||||
from spqrtree._graph import Edge, MultiGraph
|
||||
from spqrtree._spqr import NodeType, SPQRNode, build_spqr_tree
|
||||
from spqrtree._triconnected import (
|
||||
ComponentType,
|
||||
TriconnectedComponent,
|
||||
find_triconnected_components,
|
||||
|
||||
Reference in New Issue
Block a user