3 Commits

Author SHA1 Message Date
imacat ee28a225d1 Advance to version 0.1.0 2026-03-05 09:02:10 +08:00
imacat c3763f1768 Initial commit
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-05 09:02:05 +08:00
imacat 14ad81ad00 Add .gitignore 2026-03-01 23:11:22 +08:00
4 changed files with 8 additions and 16 deletions
+3 -4
View File
@@ -1,7 +1,6 @@
# The SPQR-Tree algorithm implementation. # The SQPR-Tree algorithm implementation.
# Copyright 2026 imacat. All rights reserved. # Copyright 2026 DSP, inc. All rights reserved.
# Authors: # Author: imacat@mail.imacat.idv.tw (imacat), 2026/3/1
# imacat@mail.imacat.idv.tw (imacat), 2026/3/1
*.pyc *.pyc
__pycache__ __pycache__
+1 -1
View File
@@ -17,6 +17,6 @@
# limitations under the License. # limitations under the License.
recursive-include docs * recursive-include docs *
prune docs/build recursive-exclude docs/build *
recursive-include tests * recursive-include tests *
recursive-exclude tests *.pyc recursive-exclude tests *.pyc
+1 -8
View File
@@ -3,7 +3,7 @@
# imacat@mail.imacat.idv.tw (imacat), 2026/3/2 # imacat@mail.imacat.idv.tw (imacat), 2026/3/2
# AI assistance: Claude Code (Anthropic) # AI assistance: Claude Code (Anthropic)
# Copyright (c) 2026 imacat. # Copyright (c) 2022-2026 imacat.
# #
# Licensed under the Apache License, Version 2.0 (the "License"); # Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License. # you may not use this file except in compliance with the License.
@@ -53,13 +53,6 @@ classifiers = [
"Typing :: Typed", "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] [build-system]
requires = ["setuptools>=61"] requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta" build-backend = "setuptools.build_meta"
+3 -3
View File
@@ -25,9 +25,9 @@ Di Battista & Tamassia (1996).
Public API:: Public API::
from spqrtree import Edge, MultiGraph from spqrtree._graph import Edge, MultiGraph
from spqrtree import NodeType, SPQRNode, build_spqr_tree from spqrtree._spqr import NodeType, SPQRNode, build_spqr_tree
from spqrtree import ( from spqrtree._triconnected import (
ComponentType, ComponentType,
TriconnectedComponent, TriconnectedComponent,
find_triconnected_components, find_triconnected_components,