Compare commits

3 Commits

Author SHA1 Message Date
imacat f067e927a2 Advance to version 0.1.0 2026-03-05 09:34:05 +08:00
imacat 23282de176 Initial commit
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-05 09:33:44 +08:00
imacat 06153f7d76 Add .gitignore 2026-03-05 09:33:14 +08:00
3 changed files with 15 additions and 7 deletions
+4 -3
View File
@@ -1,6 +1,7 @@
# The SQPR-Tree algorithm implementation.
# Copyright 2026 DSP, inc. All rights reserved.
# Author: imacat@mail.imacat.idv.tw (imacat), 2026/3/1
# The SPQR-Tree algorithm implementation.
# Copyright 2026 imacat. All rights reserved.
# Authors:
# imacat@mail.imacat.idv.tw (imacat), 2026/3/1
*.pyc
__pycache__
+8 -1
View File
@@ -3,7 +3,7 @@
# imacat@mail.imacat.idv.tw (imacat), 2026/3/2
# AI assistance: Claude Code (Anthropic)
# Copyright (c) 2022-2026 imacat.
# Copyright (c) 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,6 +53,13 @@ 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"
+3 -3
View File
@@ -25,9 +25,9 @@ Di Battista & Tamassia (1996).
Public API::
from spqrtree._graph import Edge, MultiGraph
from spqrtree._spqr import NodeType, SPQRNode, build_spqr_tree
from spqrtree._triconnected import (
from spqrtree import Edge, MultiGraph
from spqrtree import NodeType, SPQRNode, build_spqr_tree
from spqrtree import (
ComponentType,
TriconnectedComponent,
find_triconnected_components,