2 Commits

Author SHA1 Message Date
imacat dc307acac7 Initial commit.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-05 08:52:03 +08:00
imacat 14ad81ad00 Add .gitignore 2026-03-01 23:11:22 +08:00
5 changed files with 9 additions and 24 deletions
+3 -4
View File
@@ -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
View File
@@ -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
-7
View File
@@ -1,10 +1,3 @@
Change Log
==========
Version 0.1.0
-------------
Released 2026/3/5
Initial release.
+1 -8
View File
@@ -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"
+4 -4
View File
@@ -25,11 +25,11 @@ Di Battista & Tamassia (1996).
Public API::
from spqrtree import SPQRTree, SPQRNode, NodeType
from spqrtree import Edge, MultiGraph
from spqrtree import NodeType, SPQRNode, build_spqr_tree
from spqrtree import build_spqr_tree
from spqrtree import (
ComponentType,
TriconnectedComponent,
ComponentType, TriconnectedComponent,
find_triconnected_components,
)
"""
@@ -43,7 +43,7 @@ from spqrtree._triconnected import (
find_triconnected_components,
)
VERSION: str = "0.1.0"
VERSION: str = "0.0.0"
"""The package version."""
__all__: list[str] = [
"SPQRTree", "SPQRNode", "NodeType",