tuft 0.1.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.
tuft/__init__.py ADDED
@@ -0,0 +1,3 @@
1
+ """"Tenant-unified FineTuning""""
2
+
3
+ __version__ = "0.1.0"
@@ -0,0 +1,77 @@
1
+ Metadata-Version: 2.4
2
+ Name: tuft
3
+ Version: 0.1.0
4
+ Summary: Tenant-unified FineTuning
5
+ Author-email: Eric Zhu <test@example.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/Eric Zhu/tuft
8
+ Project-URL: Repository, https://github.com/Eric Zhu/tuft
9
+ Classifier: Development Status :: 3 - Alpha
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.8
14
+ Classifier: Programming Language :: Python :: 3.9
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Requires-Python: >=3.8
19
+ Description-Content-Type: text/markdown
20
+ License-File: LICENSE
21
+ Provides-Extra: dev
22
+ Requires-Dist: pytest>=7.0; extra == "dev"
23
+ Requires-Dist: pytest-cov>=4.0; extra == "dev"
24
+ Requires-Dist: black>=23.0; extra == "dev"
25
+ Requires-Dist: flake8>=6.0; extra == "dev"
26
+ Requires-Dist: mypy>=1.0; extra == "dev"
27
+ Dynamic: license-file
28
+
29
+ # tuft
30
+
31
+ Tenant-unified FineTuning
32
+
33
+ ## Installation
34
+
35
+ ```bash
36
+ uv pip install tuft
37
+ # or
38
+ pip install tuft
39
+ ```
40
+
41
+ ## Usage
42
+
43
+ ```python
44
+ import tuft
45
+
46
+ # Your code here
47
+ ```
48
+
49
+ ## Development
50
+
51
+ ```bash
52
+ # Install in development mode with uv
53
+ uv pip install -e ".[dev]"
54
+
55
+ # Run tests
56
+ uv run pytest
57
+
58
+ # Format code
59
+ uv run black src tests
60
+
61
+ # Type check
62
+ uv run mypy src
63
+ ```
64
+
65
+ ## Building and Publishing
66
+
67
+ ```bash
68
+ # Build the package
69
+ uv build
70
+
71
+ # Publish to PyPI
72
+ uv publish
73
+ ```
74
+
75
+ ## License
76
+
77
+ MIT License - see LICENSE file for details.
@@ -0,0 +1,6 @@
1
+ tuft/__init__.py,sha256=sAM0ngF8F2PnB93Yj_fNZqiPuLsXms1ZTClg7wTswl8,57
2
+ tuft-0.1.0.dist-info/licenses/LICENSE,sha256=H4tiBAqgq0cUtH7ZBaRKerD-uCjIw_dY6Wmb2iYkW5M,1065
3
+ tuft-0.1.0.dist-info/METADATA,sha256=q5JEzz9iaOJgqfpcMnG7w963bjVtAIfSY9DfMaUwlO0,1544
4
+ tuft-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
5
+ tuft-0.1.0.dist-info/top_level.txt,sha256=wRe9JNRCYedpws7kJ_dSExH4UzQC3tyFMJ2GLrw5g08,5
6
+ tuft-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Eric Zhu
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ tuft