Skip to content

Commit d20b884

Browse files
committed
Reorganizing to use uv
1 parent 38be214 commit d20b884

File tree

8 files changed

+198
-258
lines changed

8 files changed

+198
-258
lines changed

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.12

Pipfile

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

Pipfile.lock

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

pyproject.toml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[project]
2+
name = "resorter-py"
3+
version = "0.1.0"
4+
description = "Add your description here"
5+
readme = "README.md"
6+
requires-python = ">=3.12"
7+
dependencies = [
8+
"click>=8.1.8",
9+
"pandas>=2.2.3",
10+
"scipy>=1.15.1",
11+
]

requirements.txt

Lines changed: 0 additions & 7 deletions
This file was deleted.
File renamed without changes.

test_resorter.py renamed to tests/test_resorter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import subprocess
22
import csv
33
import pandas as pd
4-
from resorter import (
4+
from resorter_py.main import (
55
parse_input,
66
determine_queries,
77
generate_bin_edges,

0 commit comments

Comments
 (0)