-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 1.29 KB
/
Copy pathpyproject.toml
File metadata and controls
43 lines (37 loc) · 1.29 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
43
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "pygrbl_build"
description = "G-code generation algorithms for GRBL diode lasers from different sources (raster Line-to-Line, SVG vector, image vector), plus image-to-SVG tracing; LaserGRBL-faithful"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [{ name = "pygrbl_build developers" }]
keywords = ["grbl", "gcode", "laser", "raster", "vector", "svg", "potrace", "lasergrbl", "engraving"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Manufacturing",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: C",
"Topic :: Scientific/Engineering :: Image Processing",
"Typing :: Typed",
]
dynamic = ["version"]
dependencies = [
"pillow>=11.3.0,<12",
]
[dependency-groups]
dev = ["pytest"]
[tool.setuptools]
package-dir = { "" = "src" }
packages = ["pygrbl_build"]
[tool.setuptools.package-data]
pygrbl_build = ["py.typed"]
[tool.setuptools.dynamic]
version = { attr = "pygrbl_build.__version__" }