lightly-mundig 0.1.3b1__cp38-abi3-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 lightly-mundig might be problematic. Click here for more details.
|
Binary file
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: lightly-mundig
|
|
3
|
+
Version: 0.1.3b1
|
|
4
|
+
Classifier: Development Status :: 4 - Beta
|
|
5
|
+
Classifier: Intended Audience :: Developers
|
|
6
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
+
Classifier: Programming Language :: Rust
|
|
14
|
+
Requires-Dist: pyjwt[crypto]>=2.9 ; extra == 'dev'
|
|
15
|
+
Requires-Dist: pytest>=6.0 ; extra == 'dev'
|
|
16
|
+
Requires-Dist: maturin>=1.0,<2.0 ; extra == 'dev'
|
|
17
|
+
Requires-Dist: ruff-lsp ; extra == 'lsp'
|
|
18
|
+
Requires-Dist: pylsp-mypy ; extra == 'lsp'
|
|
19
|
+
Provides-Extra: dev
|
|
20
|
+
Provides-Extra: lsp
|
|
21
|
+
License-File: LICENSE.md
|
|
22
|
+
Summary: Python bindings for selection
|
|
23
|
+
Author: Lightly Inc.
|
|
24
|
+
Author-email: team@lightly.ai
|
|
25
|
+
License: MIT
|
|
26
|
+
Requires-Python: >=3.8
|
|
27
|
+
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
28
|
+
|
|
29
|
+
# Lightly Mundig
|
|
30
|
+
|
|
31
|
+
A Rust package with Python bindings for sample selection using weighting strategies. More strategies will be added later.
|
|
32
|
+
|
|
33
|
+
## Prerequisites
|
|
34
|
+
|
|
35
|
+
- Python 3.8+
|
|
36
|
+
- Rust (with Cargo)
|
|
37
|
+
- pip or uv
|
|
38
|
+
|
|
39
|
+
## Quick Start
|
|
40
|
+
|
|
41
|
+
1. **Build and install the package:**
|
|
42
|
+
```bash
|
|
43
|
+
python -m venv venv
|
|
44
|
+
source .venv/bin/activate
|
|
45
|
+
make install
|
|
46
|
+
```
|
|
47
|
+
2. **Test the package, both Rust and Python:**
|
|
48
|
+
```bash
|
|
49
|
+
source venv/bin/activate
|
|
50
|
+
make test
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
## How to generate a license token for customers or developers
|
|
54
|
+
|
|
55
|
+
Currently the license generating token is in the `tests` directory, so that it's not shipped into the final wheel. We'll try to find a better location for it later.
|
|
56
|
+
|
|
57
|
+
You should pass the number of weeks for which the token will be valid, otherwise a default value of 13 (roughtly 3 months) will be used.
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
source venv/bin/activate
|
|
61
|
+
make install
|
|
62
|
+
cd tests
|
|
63
|
+
python license_util.py --weeks 3
|
|
64
|
+
```
|
|
65
|
+
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
lightly_mundig-0.1.3b1.dist-info/METADATA,sha256=1X7kZBtuMdYGdni0s3PifVwZPfjZbTaxm9WQk_j0j4g,1943
|
|
2
|
+
lightly_mundig-0.1.3b1.dist-info/WHEEL,sha256=tDwpVQdIftVdUCGzi9EZxv0g6xpy3EOhhp1xDnIF2OU,102
|
|
3
|
+
lightly_mundig-0.1.3b1.dist-info/licenses/LICENSE.md,sha256=TI3vuRSkYiIbbM-qavPoQ64Yb0rVfbA2HSjUrLewD-I,20
|
|
4
|
+
lightly_mundig/__init__.py,sha256=q3YUdqA4BRzf_8IOzDibpyhooDfr8CppXbol0s4pAq8,139
|
|
5
|
+
lightly_mundig/lightly_mundig.abi3.so,sha256=o3d_y-ebTC1Zzv8iuC_USi8PMohdBNfx7WUqlPa_nGk,1468096
|
|
6
|
+
lightly_mundig-0.1.3b1.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(C) 2025 Lightly AG
|