forked from Klipper3d/klipper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
25 lines (22 loc) · 707 Bytes
/
pyproject.toml
File metadata and controls
25 lines (22 loc) · 707 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
[project]
name = "klipper"
version = "0.13.0"
description = "The Klipper firmware controls 3d-Printers"
dependencies = [
"cffi==1.14.6",
"pyserial==3.4",
"greenlet==2.0.2 ; python_version < '3.12'",
"greenlet==3.0.3 ; python_version >= '3.12'",
"Jinja2==2.11.3",
"python-can==3.3.4",
"markupsafe==1.1.1",
"setuptools==75.6.0 ; python_version >= '3.12'" # Needed by python-can
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["klippy", "klippy.chelper", "klippy.extras", "klippy.extras.display", "klippy.kinematics"]
include-package-data = true
[tool.setuptools.package-data]
"klippy.chelper" = ["*.c", "*.h"]