najaeda 0.1.6__cp313-cp313-macosx_11_0_arm64.whl → 0.1.8__cp313-cp313-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.
- najaeda/docs/.readthedocs.yaml +31 -0
- najaeda/docs/requirements.txt +7 -0
- najaeda/docs/source/api.rst +2 -2
- najaeda/docs/source/conf.py +1 -1
- najaeda/docs/source/equipotential.rst +20 -0
- najaeda/docs/source/index.rst +4 -0
- najaeda/docs/source/instance.rst +23 -0
- najaeda/docs/source/net.rst +20 -0
- najaeda/docs/source/term.rst +20 -0
- najaeda/libnaja_snl.dylib +0 -0
- najaeda/libnaja_snl_python.dylib +0 -0
- najaeda/netlist.py +397 -145
- najaeda/stats.py +320 -0
- {najaeda-0.1.6.dist-info → najaeda-0.1.8.dist-info}/METADATA +38 -2
- najaeda-0.1.8.dist-info/RECORD +25 -0
- najaeda-0.1.6.dist-info/RECORD +0 -18
- {najaeda-0.1.6.dist-info → najaeda-0.1.8.dist-info}/WHEEL +0 -0
- {najaeda-0.1.6.dist-info → najaeda-0.1.8.dist-info}/licenses/AUTHORS +0 -0
- {najaeda-0.1.6.dist-info → najaeda-0.1.8.dist-info}/licenses/LICENSE +0 -0
|
@@ -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
|
najaeda/docs/source/api.rst
CHANGED
najaeda/docs/source/conf.py
CHANGED
|
@@ -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.
|
|
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:
|
najaeda/docs/source/index.rst
CHANGED
|
@@ -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
|
najaeda/libnaja_snl_python.dylib
CHANGED
|
Binary file
|