-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 1.03 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
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "octoprint-plugin-tool"
description = "A CLI tool to help with maintaining OctoPrint Plugins"
version = "0.1.1"
readme = {file = "README.md", content-type = "text/markdown"}
license = "AGPL-3.0-or-later"
license-files = ["LICENSE.txt"]
authors = [
{name = "Gina Häußge", email = "gina@octoprint.org"},
]
maintainers = [
{name = "Gina Häußge", email = "gina@octoprint.org"},
]
dependencies = [
"deepmerge>=2.0",
"packaging>=24.2",
"pyyaml",
"validate-pyproject",
'tomli>=1.1.0 ; python_version < "3.11"',
"tomli-w"
]
requires-python = ">= 3.9"
[project.scripts]
octoprint-plugin-tool = "octoprint_plugin_tool:main"
[project.optional-dependencies]
develop = [
"pytest",
"pre-commit",
]
[project.urls]
homepage = "https://github.com/OctoPrint/octoprint-plugin-tool/"
issues = "https://github.com/OctoPrint/octoprint-plugin-tool/issues"
source = "https://github.com/OctoPrint/octoprint-plugin-tool/"