-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (24 loc) · 934 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (24 loc) · 934 Bytes
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
[project]
name = "python_detection"
version = "0.1.0"
description = "Default template for PDM package"
authors = [
{name = "Aliff", email = "aliffhaikal117@gmail.com"},
]
dependencies = ["opencv-python>=4.11.0.86", "numpy>=2.2.4", "matplotlib>=3.10.1", "pyfirmata>=1.1.0", "gpiozero>=2.0.1", "adafruit-circuitpython-servokit>=1.3.22", "pandas>=2.3.3", "lgpio>=0.2.2.0"]
requires-python = ">=3.11"
readme = "README.md"
license = {text = "MIT"}
[tool.pdm]
distribution = false
[tool.pdm.scripts]
start = "pdm run __main__.py"
start_test.cmd = "pdm run __main__.py"
start_test.env = { TEST_MODE = "true" }
pic_test.cmd = "pdm run __main__.py"
pic_test.env = { PICTURE_TEST = "true",TEST_MODE = "true" }
camera_test.cmd = "pdm run __main__.py"
camera_test.env = { TEST_MODE = "true", CAMERA_TEST = "true"}
pi_test.cmd = "python -m tests.raspberry_test"
baseline.cmd = "pdm run __main__.py"
baseline.env = { OL_MODE = "true" }