Skip to content

Commit 2f613a4

Browse files
authored
Merge pull request #3 from abidlabs/fix-install
Fix install
2 parents 682d78f + 465f3a2 commit 2f613a4

4 files changed

Lines changed: 10 additions & 5 deletions

File tree

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,12 @@ Trackio is designed to be lightweight (<500 lines of code total), not fully-feat
6060
pip install trackio
6161
```
6262

63+
or with `uv`:
64+
65+
```py
66+
uv pip install trackio
67+
```
68+
6369
## Usage
6470

6571
```python

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ authors = [
1111
readme = "README.md"
1212
requires-python = ">3.9"
1313
dependencies = [
14+
"datasets",
15+
"pandas",
16+
"gradio",
1417
]
1518
classifiers = [
1619
"Programming Language :: Python :: 3",

requirements.txt

Lines changed: 0 additions & 4 deletions
This file was deleted.

tests/test_basic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33

44
def test_version():
5-
assert trackio.__version__ == "0.0.2"
5+
assert trackio.__version__ == "0.0.3"

0 commit comments

Comments
 (0)