-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpixi.toml
47 lines (39 loc) · 1.08 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
[project]
authors = ["AndreaFrederica <andreafrederica@outlook.com>"]
channels = ["conda-forge"]
description = "Add a short description here"
name = "wepay"
platforms = ["win-64"]
version = "0.1.0"
[environments]
default = ["release"]
build = ["build"]
[feature.release.tasks]
gencode = { cmd = "python main.py"}
clean = { cmd = "python clean.py"}
[feature.release.dependencies]
pip = ">=24.3.1,<25"
python = "3.13.*"
[feature.release.pypi-dependencies]
opencv-python = ">=4.10.0.84, <5"
pillow = ">=11.0.0, <12"
autopep8 = ">=2.3.1, <3"
numpy = ">=2.1.2, <3"
opencv-contrib-python = ">=4.10.0.84, <5"
qrcode = ">=8.0, <9"
[feature.build.tasks]
gencode = { cmd = "python main.py"}
clean = { cmd = "python clean.py"}
build = {cmd = "python build.py build"}
build_clean = {cmd = "python build.py clean"}
[feature.build.dependencies]
pip = ">=24.3.1,<25"
python = "3.12.*"
[feature.build.pypi-dependencies]
opencv-python = ">=4.10.0.84, <5"
pillow = ">=11.0.0, <12"
autopep8 = ">=2.3.1, <3"
numpy = ">=2.1.2, <3"
opencv-contrib-python = ">=4.10.0.84, <5"
qrcode = ">=8.0, <9"
nuitka = ">=2.4.11, <3"