najaeda 0.1.6__cp310-cp310-macosx_11_0_arm64.whl → 0.1.8__cp310-cp310-macosx_11_0_arm64.whl

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.

Potentially problematic release.


This version of najaeda might be problematic. Click here for more details.

@@ -0,0 +1,31 @@
1
+ # SPDX-FileCopyrightText: 2024 The Naja authors <https://github.com/najaeda/naja/blob/main/AUTHORS>
2
+ #
3
+ # SPDX-License-Identifier: Apache-2.0
4
+ # .readthedocs.yaml
5
+ # Read the Docs configuration file
6
+ # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
7
+
8
+ # Required
9
+ version: 2
10
+
11
+ # Set the OS, Python version and other tools you might need
12
+ build:
13
+ os: ubuntu-22.04
14
+ tools:
15
+ python: "3.12"
16
+
17
+ # Build documentation in the "docs/" directory with Sphinx
18
+ sphinx:
19
+ configuration: src/najaeda/najaeda/docs/source/conf.py
20
+
21
+ # Optionally build your docs in additional formats such as PDF and ePub
22
+ # formats:
23
+ # - pdf
24
+ # - epub
25
+
26
+ # Optional but recommended, declare the Python requirements required
27
+ # to build your documentation
28
+ # See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
29
+ python:
30
+ install:
31
+ - requirements: src/najaeda/najaeda/docs/requirements.txt
@@ -0,0 +1,7 @@
1
+ docutils>=0.12
2
+ Jinja2>=2.7.3
3
+ MarkupSafe>=0.23
4
+ Pygments>=1.6
5
+ Sphinx>=4.0,!=5.0.0
6
+ Breathe>=v4.35.0
7
+ sphinx_rtd_theme>=1.3.0
@@ -1,5 +1,5 @@
1
- najaeda API Documentation
2
- =========================
1
+ najaeda Complete API Documentation
2
+ ==================================
3
3
 
4
4
  .. automodule:: najaeda.netlist
5
5
  :members:
@@ -15,7 +15,7 @@ sys.path.insert(0, os.path.abspath('../../../'))
15
15
  project = 'najaeda'
16
16
  copyright = '2024, Naja authors'
17
17
  author = 'Naja authors'
18
- release = '0.1.6'
18
+ release = '0.1.8'
19
19
 
20
20
  # -- General configuration ---------------------------------------------------
21
21
  # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
@@ -0,0 +1,20 @@
1
+ Equipotential Class
2
+ ===================
3
+
4
+ .. automodule:: najaeda.equipotential
5
+ :members:
6
+ :undoc-members:
7
+ :show-inheritance:
8
+
9
+ Equipotential Overview
10
+ ----------------------
11
+
12
+ The `Equipotential` class is responsible for managing equipotentials in the `najaeda` system.
13
+
14
+ Equipotential Attributes
15
+ ------------------------
16
+
17
+ .. autoclass:: najaeda.netlist.Equipotential
18
+ :members:
19
+ :undoc-members:
20
+ :show-inheritance:
@@ -10,4 +10,8 @@ najaeda documentation
10
10
  :maxdepth: 2
11
11
  :caption: Contents:
12
12
 
13
+ instance
14
+ term
15
+ net
16
+ equipotential
13
17
  api
@@ -0,0 +1,23 @@
1
+ Instance Class
2
+ ==============
3
+
4
+ .. automodule:: najaeda.instance
5
+ :members:
6
+ :undoc-members:
7
+ :show-inheritance:
8
+
9
+ Instance Overview
10
+ -----------------
11
+
12
+ In `najaeda`, an `Instance` encapsulates the concept of an instance in its hierarchical context.
13
+
14
+ When an `Instance` is modified through editing methods,
15
+ `najaeda` will automatically manage the necessary uniquification.
16
+
17
+ Instance Attributes
18
+ -------------------
19
+
20
+ .. autoclass:: najaeda.netlist.Instance
21
+ :members:
22
+ :undoc-members:
23
+ :show-inheritance:
@@ -0,0 +1,20 @@
1
+ Net Class
2
+ =========
3
+
4
+ .. automodule:: najaeda.net
5
+ :members:
6
+ :undoc-members:
7
+ :show-inheritance:
8
+
9
+ Net Overview
10
+ ------------
11
+
12
+ The `Net` class is responsible for managing nets in the `najaeda` system.
13
+
14
+ Net Attributes
15
+ --------------
16
+
17
+ .. autoclass:: najaeda.netlist.Net
18
+ :members:
19
+ :undoc-members:
20
+ :show-inheritance:
@@ -0,0 +1,20 @@
1
+ Term Class
2
+ ==========
3
+
4
+ .. automodule:: najaeda.term
5
+ :members:
6
+ :undoc-members:
7
+ :show-inheritance:
8
+
9
+ Term Overview
10
+ -------------
11
+
12
+ The `Term` class is responsible for managing terms in the `najaeda` system.
13
+
14
+ Term Attributes
15
+ ---------------
16
+
17
+ .. autoclass:: najaeda.netlist.Term
18
+ :members:
19
+ :undoc-members:
20
+ :show-inheritance:
najaeda/libnaja_snl.dylib CHANGED
Binary file
Binary file