ascutil 0.1.0__cp39-cp39-musllinux_1_2_i686.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.
ascutil/__init__.py
ADDED
ascutil/__init__.pyi
ADDED
|
Binary file
|
ascutil/py.typed
ADDED
|
File without changes
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ascutil
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Classifier: Programming Language :: Rust
|
|
5
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
6
|
+
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
7
|
+
Requires-Python: >=3.8
|
|
8
|
+
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
9
|
+
Project-URL: Homepages, https://github.com/heiljj/ascutil
|
|
10
|
+
|
|
11
|
+
# ascutil
|
|
12
|
+
Python bindings for fast .asc circuit mutation.
|
|
13
|
+
|
|
14
|
+
## Usage
|
|
15
|
+
```
|
|
16
|
+
from ascutil import mutate
|
|
17
|
+
|
|
18
|
+
rows = list(range(16))
|
|
19
|
+
columns = list(range(54))
|
|
20
|
+
mutate("circuit_copy.asc", rows, columns, 0.5)
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Building
|
|
24
|
+
```
|
|
25
|
+
python3 -m venv .venv
|
|
26
|
+
source .venv/bin/activate
|
|
27
|
+
pip install maturin
|
|
28
|
+
maturin build --release
|
|
29
|
+
```
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
ascutil/__init__.py,sha256=20rsLVhYScrn7a0zkT14R64ovgqqjy_miaA6WTVMtvo,111
|
|
2
|
+
ascutil/__init__.pyi,sha256=-egqSrKBTScIh13U7kgdkT1wxYt39j8RrVNgtSQT0yA,166
|
|
3
|
+
ascutil/ascutil.cpython-39-i386-linux-gnu.so,sha256=MIa2vWIr8U9FqzOUx8ChfB618H4ARrG0DXp2VfTAurg,551165
|
|
4
|
+
ascutil/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
+
ascutil-0.1.0.dist-info/METADATA,sha256=n8dUWYgR6w_Qt-i8vDGZonHoWfb6fQG-_r7osws2t_g,696
|
|
6
|
+
ascutil-0.1.0.dist-info/WHEEL,sha256=PxnKdrTCL7EpkFPFjFBmQnlGbstWhJZttEyxCJ69M4c,104
|
|
7
|
+
ascutil.libs/libgcc_s-8c2f5de4.so.1,sha256=kSGru1K5a_vOr1EMn5GXfvaYMUTnHaCTddYVIrEEuao,552385
|
|
8
|
+
ascutil-0.1.0.dist-info/RECORD,,
|
|
Binary file
|