-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpixi.toml
65 lines (53 loc) · 1.35 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[project]
name = "conda-auth"
version = "0.2.0"
description = "A conda plugin for handling multiple authentication schemes"
authors = ["Travis Hathaway <[email protected]>"]
channels = ["conda-forge"]
platforms = ["linux-64", "win-64", "osx-64", "osx-arm64"]
[tasks]
# Run this first; it will install conda-auth as a local package
develop = "pip install -e ."
# Test commands
test = "pytest --doctest-modules"
testcov = "pytest --cov=conda_auth --cov-report=xml --doctest-modules"
testhtml = "pytest --cov=conda_auth --cov-report=html --doctest-modules"
# Build commands
build = "rattler-build build --recipe recipe.yaml"
[dependencies]
python = ">=3.8"
conda = ">=23.9.0"
keyring = "*"
requests = "*"
"ruamel.yaml" = "*"
[feature.py312.dependencies]
python = "3.12.*"
[feature.py311.dependencies]
python = "3.11.*"
[feature.py310.dependencies]
python = "3.10.*"
[feature.py39.dependencies]
python = "3.9.*"
[feature.py38.dependencies]
python = "3.8.*"
[feature.dev.dependencies]
darker = "*"
flake8 = "*"
"keyrings.alt" = "*"
mypy = "*"
pip = "*"
pyupgrade = "*"
pytest = "*"
pytest-cov = "*"
pytest-mock = "*"
pre-commit = "*"
rattler-build = "*"
[environments]
dev = ["dev"]
dev-py312 = ["dev", "py312"]
dev-py311 = ["dev", "py311"]
dev-py310 = ["dev", "py310"]
dev-py39 = ["dev", "py39"]
dev-py38 = ["dev", "py38"]
[activation]
scripts = ["dev/setup.sh"]