generated from guenp/python-project-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pixi.toml
46 lines (38 loc) · 1.01 KB
/
pixi.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[project]
name = "assign-reviews"
version = "0.1.0"
description = "Workflow to assign reviewers for the SciPy Conference"
authors = [
"Guen Prawiroatmodjo <[email protected]>",
"Matthew Feickert <[email protected]>"
]
channels = ["conda-forge"]
platforms = ["linux-64", "osx-64", "osx-arm64"]
[tasks]
pre-processing = "cd notebooks && python pre-processing.py"
assignments = "cd notebooks && python run-assignments.py"
[dependencies]
python = "3.12.*"
scipy = ">=1.10.0"
pandas = ">=2.2.0"
notebook = ">=7.1.2"
jupytext = ">=1.10.0"
[pypi-dependencies]
duckdb = { version = ">=0.10.0" }
duckdb-engine = { version = ">=0.11.2" }
[feature.test.tasks]
test = "coverage run --module pytest tests/"
[feature.test.dependencies]
pytest = ">=8.0.0"
coverage = ">=7.0.0"
[feature.lint.tasks]
lint = "pre-commit run --all-files"
ruff = "ruff check ."
black = "black . --check --verbose"
[feature.lint.dependencies]
pre-commit = ">=3.7.0"
ruff = ">=0.3.4"
black = ">=24.3.0"
[environments]
test = ["test"]
lint = ["lint"]