-
Notifications
You must be signed in to change notification settings - Fork 3
/
pixi.toml
46 lines (39 loc) · 1.56 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 = "conda-metadata-app"
version = "0.1.0"
description = "A streamlit app to query metadata from conda packages"
authors = ["jaimergp <[email protected]>"]
channels = ["conda-forge"]
platforms = ["linux-64", "win-64", "osx-arm64", "osx-64", "linux-aarch64"]
[tasks]
dev = "python -m streamlit run --server.runOnSave=true app.py"
deploy = "python -m streamlit run --server.headless=true --global.developmentMode=false app.py"
schema = "python -m conda_metadata_app.app_config"
postinstall-production = "pip install --no-deps --disable-pip-version-check dist/conda_metadata_app-*.whl"
# please sync the dependencies with pyproject.toml and requirements.txt
[dependencies]
python = "3.12.*"
pydantic-settings = ">=2.4.0,<3"
pydantic = ">=2.8.2,<3"
typing-extensions = ">=4.12.2,<5"
zstandard = ">=0.23.0,<0.24"
py-rattler = ">=0.7.0,<0.8"
conda-forge-metadata = ">=0.11.0,<0.12"
conda-oci-mirror = ">=0.1.0,<0.2"
streamlit = ">=1.39.0,<2"
streamlit-searchbox = "==0.1.19"
setuptools = "*" # can be removed after conda-oci-mirror gets rid of it, https://github.com/channel-mirrors/conda-oci-mirror/pull/40
[host-dependencies]
pip = "*"
[feature.build.dependencies]
python-build = "*"
hatchling = "*"
[feature.build.tasks]
postinstall = "pip install --no-build-isolation --no-deps --disable-pip-version-check -e ."
build-wheel = "python -m build --no-isolation --wheel ."
[feature.dev.dependencies]
pixi-pycharm = ">=0.0.6,<0.0.7"
[environments]
default = [] # includes default feature
build = ["build"]
dev = { features = ["dev"], no-default-feature = true }