-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (27 loc) · 812 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (27 loc) · 812 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
[build-system]
requires = ["setuptools>=77.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pygrbl_streamer"
version = "0.0.1"
description = "Thread-safe, fault-tolerant G-code streamer for GRBL controllers."
readme = "readme.md"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Beltrán Offerrall" },
]
keywords = ["grbl", "gcode", "cnc", "laser", "serial", "streaming"]
dependencies = [
"pyserial>=3.5",
]
[project.urls]
Homepage = "https://github.com/offerrall/PyGrbl_Streamer"
Repository = "https://github.com/offerrall/PyGrbl_Streamer"
Issues = "https://github.com/offerrall/PyGrbl_Streamer/issues"
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["pygrbl_streamer"]
[tool.setuptools.package-data]
pygrbl_streamer = ["py.typed"]