-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 881 Bytes
/
pyproject.toml
File metadata and controls
42 lines (35 loc) · 881 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
33
34
35
36
37
38
39
40
41
42
[build-system]
requires = [
"setuptools>=68",
]
build-backend = "setuptools.build_meta"
[project]
name = "OctoPrint-FixCBDFirmware"
version = "0.4.0"
description = "Fixes communication with a broken firmware making its rounds that identifies as 'CBD make it'"
authors = [
{ name = "Gina Häußge", email = "gina@octoprint.org" },
]
requires-python = ">=3.7,<4"
dependencies = []
dynamic = [
"license",
]
[project.entry-points."octoprint.plugin"]
fixcbdfirmware = "octoprint_fixcbdfirmware"
[project.urls]
Homepage = "https://github.com/OctoPrint/OctoPrint-FixCBDFirmware"
[project.optional-dependencies]
develop = [
"go-task-bin",
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = [
"octoprint_fixcbdfirmware",
"octoprint_fixcbdfirmware.*",
]