pd-code-mirror 0.0.1__tar.gz → 0.1.0__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.
@@ -0,0 +1,42 @@
1
+ Metadata-Version: 2.4
2
+ Name: pd-code-mirror
3
+ Version: 0.1.0
4
+ Summary: # pd_code_mirror
5
+ License: MIT
6
+ License-File: LICENSE
7
+ Author: mirror a link or knot with pd_code.
8
+ Requires-Python: >=3.10
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.10
12
+ Classifier: Programming Language :: Python :: 3.11
13
+ Classifier: Programming Language :: Python :: 3.12
14
+ Classifier: Programming Language :: Python :: 3.13
15
+ Classifier: Programming Language :: Python :: 3.14
16
+ Requires-Dist: pd-code-sanity (>=0.1.0)
17
+ Description-Content-Type: text/markdown
18
+
19
+ # pd-code-mirror
20
+
21
+ Construct the mirror of a PD code.
22
+
23
+ ## Installation
24
+
25
+ ```bash
26
+ pip install pd-code-mirror
27
+ ```
28
+
29
+ ## Quick start
30
+
31
+ `from pd_code_mirror import mirror_pd_code`.
32
+
33
+ PD codes are lists of four-entry crossings. Each arc label must occur exactly twice. Functions validate their inputs and do not mutate caller-owned PD-code lists unless explicitly documented.
34
+
35
+ ## Development
36
+
37
+ Use Python 3.10 or newer for Python packages. Build distributions with `poetry build`. Run the package's tests or examples before publishing. C++ projects require a modern standards-compliant compiler.
38
+
39
+ ## License
40
+
41
+ MIT. See `LICENSE`.
42
+
@@ -0,0 +1,23 @@
1
+ # pd-code-mirror
2
+
3
+ Construct the mirror of a PD code.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pip install pd-code-mirror
9
+ ```
10
+
11
+ ## Quick start
12
+
13
+ `from pd_code_mirror import mirror_pd_code`.
14
+
15
+ PD codes are lists of four-entry crossings. Each arc label must occur exactly twice. Functions validate their inputs and do not mutate caller-owned PD-code lists unless explicitly documented.
16
+
17
+ ## Development
18
+
19
+ Use Python 3.10 or newer for Python packages. Build distributions with `poetry build`. Run the package's tests or examples before publishing. C++ projects require a modern standards-compliant compiler.
20
+
21
+ ## License
22
+
23
+ MIT. See `LICENSE`.
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "pd-code-mirror"
3
- version = "0.0.1"
3
+ version = "0.1.0"
4
4
  description = "# pd_code_mirror"
5
5
  authors = [
6
6
  {name = "mirror a link or knot with pd_code."}
@@ -9,7 +9,7 @@ license = {text = "MIT"}
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
11
11
  dependencies = [
12
- "pd_code_sanity"
12
+ "pd-code-sanity>=0.1.0"
13
13
  ]
14
14
 
15
15
 
@@ -1,36 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: pd-code-mirror
3
- Version: 0.0.1
4
- Summary: # pd_code_mirror
5
- License: MIT
6
- License-File: LICENSE
7
- Author: mirror a link or knot with pd_code.
8
- Requires-Python: >=3.10
9
- Classifier: License :: OSI Approved :: MIT License
10
- Classifier: Programming Language :: Python :: 3
11
- Classifier: Programming Language :: Python :: 3.10
12
- Classifier: Programming Language :: Python :: 3.11
13
- Classifier: Programming Language :: Python :: 3.12
14
- Classifier: Programming Language :: Python :: 3.13
15
- Classifier: Programming Language :: Python :: 3.14
16
- Requires-Dist: pd_code_sanity
17
- Description-Content-Type: text/markdown
18
-
19
- # pd_code_mirror
20
- mirror a link or knot with pd_code.
21
-
22
- ## Install
23
-
24
- ```bash
25
- pip install pd-code-mirror
26
- ```
27
-
28
- ## Usage
29
-
30
- ```python
31
- import pd_code_mirror
32
-
33
- pd_code = [[1, 5, 2, 4], [3, 1, 4, 6], [5, 3, 6, 2]]
34
- print(pd_code_mirror.mirror_pd_code(pd_code))
35
- ```
36
-
@@ -1,17 +0,0 @@
1
- # pd_code_mirror
2
- mirror a link or knot with pd_code.
3
-
4
- ## Install
5
-
6
- ```bash
7
- pip install pd-code-mirror
8
- ```
9
-
10
- ## Usage
11
-
12
- ```python
13
- import pd_code_mirror
14
-
15
- pd_code = [[1, 5, 2, 4], [3, 1, 4, 6], [5, 3, 6, 2]]
16
- print(pd_code_mirror.mirror_pd_code(pd_code))
17
- ```
File without changes