-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (39 loc) · 974 Bytes
/
pyproject.toml
File metadata and controls
46 lines (39 loc) · 974 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
43
44
45
46
[build-system]
requires = [
"setuptools>=68",
]
build-backend = "setuptools.build_meta"
[project]
name = "Google-Drive-Backup"
version = "0.1.5"
description = "This plugin will automatically save a copy of your OctoPrint backup to Google Drive upon completion."
authors = [
{ name = "jneilliii", email = "jneilliii+github@gmail.com" },
]
requires-python = ">=3.7,<4"
dependencies = [
"cryptography>=38.0.0,<40",
"httplib2<0.30.0",
"pydrive2",
]
dynamic = [
"license",
]
[project.entry-points."octoprint.plugin"]
googledrivebackup = "octoprint_googledrivebackup"
[project.urls]
Homepage = "https://github.com/jneilliii/OctoPrint-GoogleDriveBackup"
[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_googledrivebackup",
"octoprint_googledrivebackup.*",
]