mozo 0.1.0__py3-none-any.whl → 0.2.0__py3-none-any.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.
- mozo/__init__.py +50 -5
- mozo/__main__.py +24 -0
- mozo/adapters/__init__.py +0 -0
- mozo/adapters/depth_anything.py +75 -0
- mozo/adapters/detectron2.py +128 -0
- mozo/adapters/qwen2_5_vl.py +170 -0
- mozo/cli.py +47 -0
- mozo/factory.py +150 -0
- mozo/manager.py +294 -0
- mozo/registry.py +235 -0
- mozo/server.py +294 -0
- mozo-0.2.0.dist-info/METADATA +343 -0
- mozo-0.2.0.dist-info/RECORD +17 -0
- mozo-0.2.0.dist-info/entry_points.txt +2 -0
- {mozo-0.1.0.dist-info → mozo-0.2.0.dist-info}/licenses/LICENSE +2 -2
- mozo-0.1.0.dist-info/METADATA +0 -58
- mozo-0.1.0.dist-info/RECORD +0 -6
- {mozo-0.1.0.dist-info → mozo-0.2.0.dist-info}/WHEEL +0 -0
- {mozo-0.1.0.dist-info → mozo-0.2.0.dist-info}/top_level.txt +0 -0
mozo-0.1.0.dist-info/METADATA
DELETED
@@ -1,58 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.4
|
2
|
-
Name: mozo
|
3
|
-
Version: 0.1.0
|
4
|
-
Summary: A Python library named mozo
|
5
|
-
Home-page: https://github.com/datamarkin/mozo
|
6
|
-
Author: Emrah NAZIF
|
7
|
-
Author-email: Your Name <your.email@example.com>
|
8
|
-
License: MIT
|
9
|
-
Project-URL: Homepage, https://github.com/datamarkin/mozo
|
10
|
-
Project-URL: Bug Tracker, https://github.com/datamarkin/mozo/issues
|
11
|
-
Classifier: Development Status :: 3 - Alpha
|
12
|
-
Classifier: Intended Audience :: Developers
|
13
|
-
Classifier: License :: OSI Approved :: MIT License
|
14
|
-
Classifier: Programming Language :: Python :: 3
|
15
|
-
Classifier: Programming Language :: Python :: 3.6
|
16
|
-
Classifier: Programming Language :: Python :: 3.7
|
17
|
-
Classifier: Programming Language :: Python :: 3.8
|
18
|
-
Classifier: Programming Language :: Python :: 3.9
|
19
|
-
Classifier: Programming Language :: Python :: 3.10
|
20
|
-
Classifier: Programming Language :: Python :: 3.11
|
21
|
-
Requires-Python: >=3.6
|
22
|
-
Description-Content-Type: text/markdown
|
23
|
-
License-File: LICENSE
|
24
|
-
Dynamic: author
|
25
|
-
Dynamic: home-page
|
26
|
-
Dynamic: license-file
|
27
|
-
Dynamic: requires-python
|
28
|
-
|
29
|
-
# mozo
|
30
|
-
|
31
|
-
A dummy Python library named mozo.
|
32
|
-
|
33
|
-
## Installation
|
34
|
-
|
35
|
-
```bash
|
36
|
-
pip install mozo
|
37
|
-
```
|
38
|
-
|
39
|
-
## Usage
|
40
|
-
|
41
|
-
```python
|
42
|
-
import mozo
|
43
|
-
|
44
|
-
# Print version
|
45
|
-
print(mozo.__version__)
|
46
|
-
|
47
|
-
# Call the hello function
|
48
|
-
print(mozo.hello())
|
49
|
-
```
|
50
|
-
|
51
|
-
## Features
|
52
|
-
|
53
|
-
- Simple hello function
|
54
|
-
- Lightweight and easy to use
|
55
|
-
|
56
|
-
## License
|
57
|
-
|
58
|
-
MIT License
|
mozo-0.1.0.dist-info/RECORD
DELETED
@@ -1,6 +0,0 @@
|
|
1
|
-
mozo/__init__.py,sha256=eAeBxoRtSeXSNpUysyX_ZhDPaMPOqcr_almjl-nF5YY,144
|
2
|
-
mozo-0.1.0.dist-info/licenses/LICENSE,sha256=O-0zMbcEi6wXz1DiSdVgzMlQjJcNqNe5KDv08uYzqR0,1055
|
3
|
-
mozo-0.1.0.dist-info/METADATA,sha256=s6-rH9rJIzaJmFcFs9WBafOCobxL23j4GIcJkIGKMtM,1304
|
4
|
-
mozo-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
5
|
-
mozo-0.1.0.dist-info/top_level.txt,sha256=tvn0MKjQnyc1gIlKPjBmrhF3xVUXuM0TGUrdsv2XHgI,5
|
6
|
-
mozo-0.1.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|