Skip to content

Commit d29e2ac

Browse files
chore: add LICENSE file and update README with license badge (#12)
1 parent 403e138 commit d29e2ac

3 files changed

Lines changed: 38 additions & 7 deletions

File tree

LICENSE

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
BSD 3-Clause License
2+
3+
Copyright (c) 2026-present, Jérémie Zurflüh
4+
5+
Redistribution and use in source and binary forms, with or without
6+
modification, are permitted provided that the following conditions are met:
7+
8+
1. Redistributions of source code must retain the above copyright notice, this
9+
list of conditions and the following disclaimer.
10+
11+
2. Redistributions in binary form must reproduce the above copyright notice,
12+
this list of conditions and the following disclaimer in the documentation
13+
and/or other materials provided with the distribution.
14+
15+
3. Neither the name of the copyright holder nor the names of its
16+
contributors may be used to endorse or promote products derived from
17+
this software without specific prior written permission.
18+
19+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
23+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
55
---
66

7+
[![License](https://img.shields.io/badge/License-BSD_3--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)
78
[![CI](https://github.com/zurfjereluhmie/evalwire/actions/workflows/ci.yml/badge.svg)](https://github.com/zurfjereluhmie/evalwire/actions/workflows/ci.yml)
9+
![PyPI - Version](https://img.shields.io/pypi/v/evalwire)
810

911
## What it does
1012

@@ -74,13 +76,13 @@ async def task(example) -> list[str]:
7476

7577
## CLI reference
7678

77-
| Command | Description |
78-
|---------|-------------|
79-
| `evalwire upload --csv PATH` | Upload CSV testset to Phoenix |
80-
| `evalwire run --experiments DIR` | Discover and run all experiments |
81-
| `evalwire run --name NAME` | Run a single named experiment |
82-
| `evalwire run --dry-run N` | Run N examples without recording results |
83-
| `evalwire run --concurrency N` | Run N experiments in parallel |
79+
| Command | Description |
80+
| -------------------------------- | ---------------------------------------- |
81+
| `evalwire upload --csv PATH` | Upload CSV testset to Phoenix |
82+
| `evalwire run --experiments DIR` | Discover and run all experiments |
83+
| `evalwire run --name NAME` | Run a single named experiment |
84+
| `evalwire run --dry-run N` | Run N examples without recording results |
85+
| `evalwire run --concurrency N` | Run N experiments in parallel |
8486

8587
---
8688

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ name = "evalwire"
77
version = "0.2.2"
88
description = "Systematic evaluation of LangGraph nodes using Arize Phoenix experiments."
99
readme = "README.md"
10+
license = "BSD-3-Clause"
1011
authors = [{ name = "evalwire contributors" }]
1112
requires-python = ">=3.10"
1213
dependencies = [

0 commit comments

Comments
 (0)