-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
55 lines (48 loc) · 1.17 KB
/
pyproject.toml
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
44
45
46
47
48
49
50
51
52
53
54
55
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "vbox-api-soap"
description = "Python bindings to the VirtualBox SOAP API."
version = "2.1.1"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Zack Didcott"}
]
maintainers = [
{name = "Zack Didcott"}
]
dependencies = [
"Flask",
"pillow",
"zeep",
"psutil",
"websockify"
]
requires-python = ">= 3.10"
keywords = ["virtualbox", "api", "soap", "zeep", "flask"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
[project.optional-dependencies]
tests = ["pytest"]
gui = ["flaskwebgui"]
[project.urls]
Homepage = "https://github.com/Zedeldi/vbox-api"
Repository = "https://github.com/Zedeldi/vbox-api.git"
Issues = "https://github.com/Zedeldi/vbox-api/issues"
[project.scripts]
vbox-api-cli = "vbox_api.cli.__main__:main"
vbox-api-http = "vbox_api.http.__main__:main"
vbox-api-gui = "vbox_api.http.gui:main"
[tool.djlint]
close_void_tags = true
indent = 2
profile = "jinja"
[tool.isort]
profile = "black"
[tool.setuptools.packages.find]
include = ["vbox_api*"]