tuft 0.1.0__tar.gz
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-0.1.0/LICENSE +21 -0
- tuft-0.1.0/PKG-INFO +77 -0
- tuft-0.1.0/README.md +49 -0
- tuft-0.1.0/pyproject.toml +51 -0
- tuft-0.1.0/setup.cfg +4 -0
- tuft-0.1.0/src/tuft/__init__.py +3 -0
- tuft-0.1.0/src/tuft.egg-info/PKG-INFO +77 -0
- tuft-0.1.0/src/tuft.egg-info/SOURCES.txt +10 -0
- tuft-0.1.0/src/tuft.egg-info/dependency_links.txt +1 -0
- tuft-0.1.0/src/tuft.egg-info/requires.txt +7 -0
- tuft-0.1.0/src/tuft.egg-info/top_level.txt +1 -0
- tuft-0.1.0/tests/test_tuft.py +11 -0
tuft-0.1.0/LICENSE
ADDED
|
@@ -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.
|
tuft-0.1.0/PKG-INFO
ADDED
|
@@ -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.
|
tuft-0.1.0/README.md
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# tuft
|
|
2
|
+
|
|
3
|
+
Tenant-unified FineTuning
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
uv pip install tuft
|
|
9
|
+
# or
|
|
10
|
+
pip install tuft
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
```python
|
|
16
|
+
import tuft
|
|
17
|
+
|
|
18
|
+
# Your code here
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Development
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
# Install in development mode with uv
|
|
25
|
+
uv pip install -e ".[dev]"
|
|
26
|
+
|
|
27
|
+
# Run tests
|
|
28
|
+
uv run pytest
|
|
29
|
+
|
|
30
|
+
# Format code
|
|
31
|
+
uv run black src tests
|
|
32
|
+
|
|
33
|
+
# Type check
|
|
34
|
+
uv run mypy src
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## Building and Publishing
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
# Build the package
|
|
41
|
+
uv build
|
|
42
|
+
|
|
43
|
+
# Publish to PyPI
|
|
44
|
+
uv publish
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## License
|
|
48
|
+
|
|
49
|
+
MIT License - see LICENSE file for details.
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=45", "wheel", "setuptools-scm[toml]>=6.2"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "tuft"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Tenant-unified FineTuning"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = {text = "MIT"}
|
|
12
|
+
authors = [
|
|
13
|
+
{name = "Eric Zhu", email = "test@example.com"}
|
|
14
|
+
]
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Development Status :: 3 - Alpha",
|
|
17
|
+
"Intended Audience :: Developers",
|
|
18
|
+
"License :: OSI Approved :: MIT License",
|
|
19
|
+
"Programming Language :: Python :: 3",
|
|
20
|
+
"Programming Language :: Python :: 3.8",
|
|
21
|
+
"Programming Language :: Python :: 3.9",
|
|
22
|
+
"Programming Language :: Python :: 3.10",
|
|
23
|
+
"Programming Language :: Python :: 3.11",
|
|
24
|
+
"Programming Language :: Python :: 3.12",
|
|
25
|
+
]
|
|
26
|
+
dependencies = []
|
|
27
|
+
|
|
28
|
+
[project.optional-dependencies]
|
|
29
|
+
dev = [
|
|
30
|
+
"pytest>=7.0",
|
|
31
|
+
"pytest-cov>=4.0",
|
|
32
|
+
"black>=23.0",
|
|
33
|
+
"flake8>=6.0",
|
|
34
|
+
"mypy>=1.0",
|
|
35
|
+
]
|
|
36
|
+
|
|
37
|
+
[project.urls]
|
|
38
|
+
Homepage = "https://github.com/Eric Zhu/tuft"
|
|
39
|
+
Repository = "https://github.com/Eric Zhu/tuft"
|
|
40
|
+
|
|
41
|
+
[tool.setuptools.packages.find]
|
|
42
|
+
where = ["src"]
|
|
43
|
+
|
|
44
|
+
[tool.black]
|
|
45
|
+
line-length = 88
|
|
46
|
+
target-version = ['py38', 'py39', 'py310', 'py311']
|
|
47
|
+
|
|
48
|
+
[tool.mypy]
|
|
49
|
+
python_version = "3.8"
|
|
50
|
+
warn_return_any = true
|
|
51
|
+
warn_unused_configs = true
|
tuft-0.1.0/setup.cfg
ADDED
|
@@ -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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tuft
|