clalit-evals 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.
- clalit_evals-0.1.0/LICENSE +21 -0
- clalit_evals-0.1.0/PKG-INFO +88 -0
- clalit_evals-0.1.0/README.md +57 -0
- clalit_evals-0.1.0/pyproject.toml +43 -0
- clalit_evals-0.1.0/setup.cfg +4 -0
- clalit_evals-0.1.0/src/clalit_evals/__init__.py +8 -0
- clalit_evals-0.1.0/src/clalit_evals.egg-info/PKG-INFO +88 -0
- clalit_evals-0.1.0/src/clalit_evals.egg-info/SOURCES.txt +10 -0
- clalit_evals-0.1.0/src/clalit_evals.egg-info/dependency_links.txt +1 -0
- clalit_evals-0.1.0/src/clalit_evals.egg-info/requires.txt +5 -0
- clalit_evals-0.1.0/src/clalit_evals.egg-info/top_level.txt +1 -0
- clalit_evals-0.1.0/tests/test_hello_world.py +10 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Ofir Arbili
|
|
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,88 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: clalit-evals
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A minimal Python package with a single function that prints Hello, World!
|
|
5
|
+
Author-email: Ofir Arbili <ofir.arbili@gmail.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/OArbili/clalit-evals
|
|
8
|
+
Project-URL: Repository, https://github.com/OArbili/clalit-evals
|
|
9
|
+
Project-URL: Issues, https://github.com/OArbili/clalit-evals/issues
|
|
10
|
+
Project-URL: Changelog, https://github.com/OArbili/clalit-evals/blob/main/CHANGELOG.md
|
|
11
|
+
Keywords: clalit,evals,hello-world
|
|
12
|
+
Classifier: Development Status :: 3 - Alpha
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Operating System :: OS Independent
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
23
|
+
Requires-Python: >=3.9
|
|
24
|
+
Description-Content-Type: text/markdown
|
|
25
|
+
License-File: LICENSE
|
|
26
|
+
Provides-Extra: dev
|
|
27
|
+
Requires-Dist: pytest>=8; extra == "dev"
|
|
28
|
+
Requires-Dist: build>=1.2; extra == "dev"
|
|
29
|
+
Requires-Dist: twine>=6.1; extra == "dev"
|
|
30
|
+
Dynamic: license-file
|
|
31
|
+
|
|
32
|
+
# clalit-evals
|
|
33
|
+
|
|
34
|
+
A minimal Python package with a single function, `hello_world()`, that prints `Hello, World!`.
|
|
35
|
+
|
|
36
|
+
## Installation
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
pip install clalit-evals
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## Usage
|
|
43
|
+
|
|
44
|
+
```python
|
|
45
|
+
from clalit_evals import hello_world
|
|
46
|
+
|
|
47
|
+
hello_world()
|
|
48
|
+
# Hello, World!
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
## Development
|
|
52
|
+
|
|
53
|
+
Create a virtual environment, install the package in editable mode with the dev tools, and run the tests:
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
python -m venv .venv
|
|
57
|
+
source .venv/bin/activate
|
|
58
|
+
pip install -e ".[dev]"
|
|
59
|
+
pytest
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
## Building and publishing
|
|
63
|
+
|
|
64
|
+
Build the source distribution and wheel, then check the metadata:
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
python -m build
|
|
68
|
+
twine check dist/*
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
Upload to TestPyPI first (recommended), then to PyPI. Both need an API token from the
|
|
72
|
+
respective site, used as the password with the username `__token__`:
|
|
73
|
+
|
|
74
|
+
```bash
|
|
75
|
+
twine upload --repository testpypi dist/*
|
|
76
|
+
twine upload dist/*
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
Alternatively, `.github/workflows/publish.yml` publishes automatically when a GitHub release
|
|
80
|
+
is published. It uses PyPI trusted publishing, so no token is stored in GitHub: on PyPI, go to
|
|
81
|
+
*Your account → Publishing* and add this repository with workflow name `publish.yml` and
|
|
82
|
+
environment name `pypi`.
|
|
83
|
+
|
|
84
|
+
Bump `version` in `pyproject.toml` and add an entry to `CHANGELOG.md` before each release.
|
|
85
|
+
|
|
86
|
+
## License
|
|
87
|
+
|
|
88
|
+
[MIT](LICENSE)
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# clalit-evals
|
|
2
|
+
|
|
3
|
+
A minimal Python package with a single function, `hello_world()`, that prints `Hello, World!`.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install clalit-evals
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```python
|
|
14
|
+
from clalit_evals import hello_world
|
|
15
|
+
|
|
16
|
+
hello_world()
|
|
17
|
+
# Hello, World!
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Development
|
|
21
|
+
|
|
22
|
+
Create a virtual environment, install the package in editable mode with the dev tools, and run the tests:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
python -m venv .venv
|
|
26
|
+
source .venv/bin/activate
|
|
27
|
+
pip install -e ".[dev]"
|
|
28
|
+
pytest
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Building and publishing
|
|
32
|
+
|
|
33
|
+
Build the source distribution and wheel, then check the metadata:
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
python -m build
|
|
37
|
+
twine check dist/*
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
Upload to TestPyPI first (recommended), then to PyPI. Both need an API token from the
|
|
41
|
+
respective site, used as the password with the username `__token__`:
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
twine upload --repository testpypi dist/*
|
|
45
|
+
twine upload dist/*
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
Alternatively, `.github/workflows/publish.yml` publishes automatically when a GitHub release
|
|
49
|
+
is published. It uses PyPI trusted publishing, so no token is stored in GitHub: on PyPI, go to
|
|
50
|
+
*Your account → Publishing* and add this repository with workflow name `publish.yml` and
|
|
51
|
+
environment name `pypi`.
|
|
52
|
+
|
|
53
|
+
Bump `version` in `pyproject.toml` and add an entry to `CHANGELOG.md` before each release.
|
|
54
|
+
|
|
55
|
+
## License
|
|
56
|
+
|
|
57
|
+
[MIT](LICENSE)
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=77"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "clalit-evals"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "A minimal Python package with a single function that prints Hello, World!"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = "MIT"
|
|
12
|
+
license-files = ["LICENSE"]
|
|
13
|
+
authors = [{ name = "Ofir Arbili", email = "ofir.arbili@gmail.com" }]
|
|
14
|
+
keywords = ["clalit", "evals", "hello-world"]
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Development Status :: 3 - Alpha",
|
|
17
|
+
"Intended Audience :: Developers",
|
|
18
|
+
"Operating System :: OS Independent",
|
|
19
|
+
"Programming Language :: Python :: 3",
|
|
20
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
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
|
+
"Programming Language :: Python :: 3.13",
|
|
26
|
+
"Programming Language :: Python :: 3.14",
|
|
27
|
+
]
|
|
28
|
+
dependencies = []
|
|
29
|
+
|
|
30
|
+
[project.optional-dependencies]
|
|
31
|
+
dev = ["pytest>=8", "build>=1.2", "twine>=6.1"]
|
|
32
|
+
|
|
33
|
+
[project.urls]
|
|
34
|
+
Homepage = "https://github.com/OArbili/clalit-evals"
|
|
35
|
+
Repository = "https://github.com/OArbili/clalit-evals"
|
|
36
|
+
Issues = "https://github.com/OArbili/clalit-evals/issues"
|
|
37
|
+
Changelog = "https://github.com/OArbili/clalit-evals/blob/main/CHANGELOG.md"
|
|
38
|
+
|
|
39
|
+
[tool.setuptools.packages.find]
|
|
40
|
+
where = ["src"]
|
|
41
|
+
|
|
42
|
+
[tool.pytest.ini_options]
|
|
43
|
+
testpaths = ["tests"]
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: clalit-evals
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A minimal Python package with a single function that prints Hello, World!
|
|
5
|
+
Author-email: Ofir Arbili <ofir.arbili@gmail.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/OArbili/clalit-evals
|
|
8
|
+
Project-URL: Repository, https://github.com/OArbili/clalit-evals
|
|
9
|
+
Project-URL: Issues, https://github.com/OArbili/clalit-evals/issues
|
|
10
|
+
Project-URL: Changelog, https://github.com/OArbili/clalit-evals/blob/main/CHANGELOG.md
|
|
11
|
+
Keywords: clalit,evals,hello-world
|
|
12
|
+
Classifier: Development Status :: 3 - Alpha
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Operating System :: OS Independent
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
23
|
+
Requires-Python: >=3.9
|
|
24
|
+
Description-Content-Type: text/markdown
|
|
25
|
+
License-File: LICENSE
|
|
26
|
+
Provides-Extra: dev
|
|
27
|
+
Requires-Dist: pytest>=8; extra == "dev"
|
|
28
|
+
Requires-Dist: build>=1.2; extra == "dev"
|
|
29
|
+
Requires-Dist: twine>=6.1; extra == "dev"
|
|
30
|
+
Dynamic: license-file
|
|
31
|
+
|
|
32
|
+
# clalit-evals
|
|
33
|
+
|
|
34
|
+
A minimal Python package with a single function, `hello_world()`, that prints `Hello, World!`.
|
|
35
|
+
|
|
36
|
+
## Installation
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
pip install clalit-evals
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## Usage
|
|
43
|
+
|
|
44
|
+
```python
|
|
45
|
+
from clalit_evals import hello_world
|
|
46
|
+
|
|
47
|
+
hello_world()
|
|
48
|
+
# Hello, World!
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
## Development
|
|
52
|
+
|
|
53
|
+
Create a virtual environment, install the package in editable mode with the dev tools, and run the tests:
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
python -m venv .venv
|
|
57
|
+
source .venv/bin/activate
|
|
58
|
+
pip install -e ".[dev]"
|
|
59
|
+
pytest
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
## Building and publishing
|
|
63
|
+
|
|
64
|
+
Build the source distribution and wheel, then check the metadata:
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
python -m build
|
|
68
|
+
twine check dist/*
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
Upload to TestPyPI first (recommended), then to PyPI. Both need an API token from the
|
|
72
|
+
respective site, used as the password with the username `__token__`:
|
|
73
|
+
|
|
74
|
+
```bash
|
|
75
|
+
twine upload --repository testpypi dist/*
|
|
76
|
+
twine upload dist/*
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
Alternatively, `.github/workflows/publish.yml` publishes automatically when a GitHub release
|
|
80
|
+
is published. It uses PyPI trusted publishing, so no token is stored in GitHub: on PyPI, go to
|
|
81
|
+
*Your account → Publishing* and add this repository with workflow name `publish.yml` and
|
|
82
|
+
environment name `pypi`.
|
|
83
|
+
|
|
84
|
+
Bump `version` in `pyproject.toml` and add an entry to `CHANGELOG.md` before each release.
|
|
85
|
+
|
|
86
|
+
## License
|
|
87
|
+
|
|
88
|
+
[MIT](LICENSE)
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
pyproject.toml
|
|
4
|
+
src/clalit_evals/__init__.py
|
|
5
|
+
src/clalit_evals.egg-info/PKG-INFO
|
|
6
|
+
src/clalit_evals.egg-info/SOURCES.txt
|
|
7
|
+
src/clalit_evals.egg-info/dependency_links.txt
|
|
8
|
+
src/clalit_evals.egg-info/requires.txt
|
|
9
|
+
src/clalit_evals.egg-info/top_level.txt
|
|
10
|
+
tests/test_hello_world.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
clalit_evals
|