-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpixi.toml
More file actions
59 lines (51 loc) · 1.17 KB
/
pixi.toml
File metadata and controls
59 lines (51 loc) · 1.17 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
[dependencies]
dask = "*"
fastapi = "*"
fsspec = "*"
make = "*"
netcdf4 = "*"
numpy = "*"
pandas = "*"
pip = "*"
pydantic = "*"
pytest = ">=9.0.2,<10"
python = "==3.11"
python-dotenv = "*"
requests = "*"
s3fs = "*"
uvicorn = "*"
xarray = "*"
zarr = "*"
[environments]
dev = ["dev"]
docs = ["docs"]
[feature.dev.dependencies]
black = "*"
mypy = "*"
pre-commit = "*"
pytest = "*"
pytest-cov = "*"
ruff = "*"
[feature.docs.dependencies]
nbsphinx = "*"
pandoc = "*"
sphinx = "*"
sphinx-autoapi = "*"
sphinx-rtd-theme = "*"
[feature.docs.tasks]
docs-build = "cp README.md docs/. && cd docs && rm -fr _api && make clean && make html"
[pypi-dependencies]
oscars-rsotc-backend = {path = ".", editable = true}
[pypi-options]
index-url = "https://pypi.org/simple"
[tasks]
dev = "python main.py"
docker-build = "docker build -t oscars-rsotc-backend ."
docker-run = "docker run --rm -ti -v $(pwd):/srv oscars-rsotc-backend"
qa = "pre-commit run --all-files"
type-check = "python -m mypy ."
unit-tests = "python -m pytest -vv --cov=. --cov-report=html --doctest-glob='*.md' --doctest-glob='*.rst' tests"
[workspace]
channels = ["conda-forge"]
name = "oscars-rsotc-backend"
platforms = ["linux-64"]