-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpixi.toml
More file actions
42 lines (37 loc) · 1.13 KB
/
pixi.toml
File metadata and controls
42 lines (37 loc) · 1.13 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
[workspace]
preview = ["pixi-build"]
authors = ["Mehmet Keçeci <mkececi@yaani.com>"]
channels = ["pypi", "https://prefix.dev/conda-forge", "https://conda.modular.com/max-nightly", "conda-forge", "https://repo.prefix.dev/modular-community"]
platforms = ["linux-64"]
name = "kececilayout"
version = "0.6.4"
[package]
name = "kececilayout"
version = "0.6.4"
license = "AGPL-3.0-or-later"
[dependencies]
python = ">=3.11"
pip = ">=25.3"
conda-build = ">=25.11.1"
setuptools = ">=80.10.1"
wheel = ">=0.45.1"
hatchling = ">=1.28.0"
setuptools_scm = ">=9.2.2"
rattler-build = ">=0.55.0"
quetz = ">=0.10.4"
sqlalchemy = ">=2.0.45"
[tasks]
build = "python -m build"
start = "python -c 'import kececilayout; print(kececilayout.__version__)'"
lint = "ruff check ."
fmt = "ruff format ."
serve = { cmd = "python -m http.server", cwd = "docs" }
install-kececilayout = "pip install git+https://github.com/WhiteSymmetry/kececilayout"
install = "pip install -e ."
test = { depends-on = ["install"], cmd = "pytest" }
install-deps = "pip install kececilayout"
[package.build.backend]
name = "pixi-build-python"
version = "*"
[package.host-dependencies]
hatchling = "*"