-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 851 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (35 loc) · 851 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-MultiCam"
version = "0.4.4"
description = "Extends the Control tab of OctoPrint, allowing the ability to switch between multiple webcam feeds."
authors = [
{ name = "Michael Morris", email = "mikedmor@gmail.com" },
]
requires-python = ">=2.7,<4"
dependencies = []
dynamic = [
"license",
]
[project.entry-points."octoprint.plugin"]
multicam = "octoprint_multicam"
[project.urls]
Homepage = "https://github.com/mikedmor/OctoPrint_MultiCam"
[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_multicam",
"octoprint_multicam.*",
]