Skip to content

Commit

Permalink
Address PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
leo-mazzone committed Dec 4, 2024
1 parent 1e17a68 commit 0fcdc5d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ With the truth threshold set to `1.0` by default, deterministic methodologies ar

## Development

This project is managed by [uv](https://docs.astral.sh/uv/), linted and formated with [ruff](https://docs.astral.sh/ruff/), and tested with [pytest](https://docs.pytest.org/en/stable/). To install all dependencies for this project, run
This project is managed by [uv](https://docs.astral.sh/uv/), linted and formated with [ruff](https://docs.astral.sh/ruff/), and tested with [pytest](https://docs.pytest.org/en/stable/). To install all dependencies for this project, run:

```
uv sync --all-extras
```
Expand Down
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Make datasets table
matchbox:
uv run python src/matchbox/server/admin.py --datasets datasets.toml
uv run python src/matchbox/admin.py --datasets datasets.toml

# Delete all compiled Python files
clean:
Expand Down
11 changes: 6 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"click>=8.1.7",
"connectorx>=0.3.3",
"duckdb>=1.1.1",
"matplotlib>=3.9.2",
Expand All @@ -21,16 +22,15 @@ dependencies = [
"sqlalchemy>=2.0.35",
]

[project.optional-dependencies]
typing = [
"polars>=1.11.0",
]
[dependency-groups]
server = [
"click>=8.1.7",
"fastapi[standard]>=0.115.0,<0.116.0",
"pg-bulk-ingest>=0.0.54",
"tomli>=2.0.1",
]
typing = [
"polars>=1.11.0",
]

[tool.uv]
dev-dependencies = [
Expand All @@ -42,6 +42,7 @@ dev-dependencies = [
"ruff>=0.6.8",
"docker>=7.1.0",
]
default-groups = ["dev", "foo"]
package = true

[tool.ruff]
Expand Down
File renamed without changes.

0 comments on commit 0fcdc5d

Please sign in to comment.